我想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
所以,你能不能给我一个想法,为什么这些功能不工作?