我目前正在使用ajax加载单个帖子。虽然帖子加载正常,但我无法加载评论。这是我的代码:
我的JavaScript加载帖子:
<script>
$(".view_post").click(function(e) {
e.preventDefault();
postid = $(this).attr("rel");
$.ajax({
url:"/wp-admin/admin-ajax.php",
type:'POST',
data:'action=posts_open&postid='+postid,
success: function(html){
$("#b_contentwrapper").empty();
$("#b_contentwrapper").append(html);
}
});
});
</script>
javascript通过以下方式遍历functions.php:
function implement_posts()
{
//<?php
get_template_part( 'loop', 'single' );
die();
}
现在,这里是我实际加载帖子内容的代码:
<?php
$linkid = "p=".$_POST["postid"];
$posti = new WP_Query($linkid);
$posti->the_post();
echo "Time: ";
the_time('F jS, Y');
echo "<br />";
the_category(', ');
echo "<br />";
the_title();
echo "<br />";
the_content();
echo "<br />";
comment_form();
?>
</div>
<?php if (have_comments()) {
echo "Comments ok";
}
else
{
echo "No comments";
}
?>
现在,即使对于具有评论的帖子,我也会显示“无评论”。其他一切均正常运行。谁能帮我吗?
谢谢。
$linkid = "p=".$_POST["postid"];
是不是很安全的SQL注入安全。尽管wordpess会对此进行检查,但您可能想自己做。