我想在WordPress使用pjax。 但每当我尝试点击它获取通过Ajax调用的内容的链接,没有任何反应和页面加载正常,萤火控制台显示301错误中止。 任何一个可以帮助?
Answer 1:
如果你正在使用WordPress的阿贾克斯则让你theam的function.php文件的操作 ,比如下面的例子
add_action('wp_ajax_do_ajax', 'our_ajax_function');
function our_ajax_function(){
// now we'll write what the server should do with our request here
}
希望这将有助于:)
文章来源: Pjax with wordpress custom theme giving 301 error in firebug