3
如何使评论对每个Ajax加载的帖子起作用?
我目前正在使用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 …