使用WordPress Ajax API查询某些帖子时,WP\\U查询的内容始终为空(这意味着该类存在,但every property is set to null or false).
function my_ajax_admin() {
$query = new WP_Query();
$tab = array();
while($query->have_posts()):
// never reached
endwhile;
die(json_encode($out));
}
}
通常不能使用
WP_Query
在Ajax中调用?我可以在函数中加载一些内容使其工作吗?我是否需要其他参数?