How to add Disqus comment count

I have the same problem with displaying number of comments in the loop.

I solve this by turn off two filters in file plugins/disqus/disqus.php at line 1124:

<?php
#add_filter('comments_number', 'dsq_comments_text');
#add_filter('get_comments_number', 'dsq_comments_number');

And I have added to my template span with disqus elements:

<?php
if ( function_exists( 'dsq_identifier_for_post' ) ) {
    global $post;
    echo  '<span class="'.$css_class.' dsq-postid" rel="'.htmlspecialchars(dsq_identifier_for_post($post)).'">';
} else {
    echo '<span class="'.$css_class.'">';
}

Leave a Comment