我想 ajaxify TwentyThirteen WordPress 模板,我在 functions.php 中有一个函数
function prefix_ajax_add_foobar() {
echo("add_foobar is trigered <br/>");
if ( have_posts() ) { echo ("have posts <br/>");
while ( have_posts() ) {
the_post(); echo ("the_post() <br/>");
the_ID(); echo ("the_ID() <br/>");
}
}
die("The End");
}
但我只看到这些结果:
add_foobar is trigered
The End
那么你能告诉我为什么这些功能不起作用吗?