我使用Jetpack Infinite Scroll:http://wordpress.org/plugins/jetpack/
在第一页评论工作正常,但当我向下滚动并且下一页加载时,评论没有出现。
我的循环:
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php comments_template();?>
<?php endwhile; ?>
ajax加载后,如何在下一页上加载评论?我怀疑我需要一个javascript回调。