Pjax与wordpress自定义主题在firebug中给出301错误

我想在wordpress中使用pjax。 但每当我尝试点击通过ajax调用获取内容的链接时,没有任何反应并且页面正常加载,firebug console显示301中止错误。 任何人都可以帮忙吗?

如果你在wordpress中使用ajax,那么在你的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 } 

希望它会帮助:)