我是AJAX的真正菜鸟,所以我想知道如何在Wordpress中使用jquery和AJAX自动更新我的评论号码。谢谢你的帮助。继承人我的jquery:
<script>
jQuery(document).ready(function($){
setInterval( "countnumbers();", 2000);
countnumbers = function(){
$('cite.commentcount').each(function(){
$(this).load('<?php get_permalink(); ?>, <?php echo get_comments_number(); ?>');
});
} // End countnumbers function
});
</script>
继承我的PHP:
<a href="<?php the_syndication_permalink();?>" target="_blank" class="readstory"></a>
<?php if(!is_single()) : ?>
<cite class="commentcount"><?php comments_number('0', '1', '%'); ?></cite>
<a href="<?php the_permalink();?>" class="comments"></a>
<?php endif; ?>