AJAX更新Wordpress注释自动计数

时间:2011-08-18 16:47:34

标签: php ajax wordpress

我是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; ?>

0 个答案:

没有答案