Tag: 简码

如何在WordPress短代码中使用AJAX?

我有一个代码来显示一个随机的报价。 一个人写了一个函数来实现所有这些。 但由于某些原因通过AJAX更新数据不起作用。 当你按下“新报价”button,没有任何反应。 也许有人知道为什么? 在下面的代码中需要解决什么问题,以便在单击“新报价”时加载新的报价? PHP /wp-content/themes/%your_theme%/js/ajax-load-quote.php <?php /* uncomment the below, if you want to use native WP functions in this file */ // require_once('../../../../wp-load.php'); $array = file( $_POST['file_path'] ); // file path in $_POST, as from the js $r = rand( 0, count($array) – 1 ); return '<p>' . $array[$r] . '</p>'; […]