Wordpress Technology

Wordpress Tips, Tutorials, Hacks

List of The Most Commented Posts

As you know the number of installed plugins affects the loading blog time.
To display most commented posts without any plugin insert next code into template files (index.php, sidebar.php and so on.)

<ul>
get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5");
foreach ($result as $post) {
	setup_postdata($post);
	$postid = $post->ID;
	$title = $post->post_title;
	$commentcount = $post->comment_count;
	if ($commentcount != 0) { ?>

		<li><a href="<?php echo get_permalink($postid)?>" title="<?php echo $title >"></a> ()</li>

</ul>

5 in line 2 is number of links displayed!

Another Way

Next code looks more elegant.

<?php $popular = new WP_Query('orderby=comment_count&showposts=7'); ?>
<?php if ($popular->have_posts()) : ?>
	<ul>
		<?php while ($popular->have_posts()) : $popular->the_post(); ?>
	  <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
		<?php endwhile; ?>
	</ul>
<?php endif; ?>

7 means number of posts to display.

Tags:

Leave a trackback from your own site.

5 Responses to “List of The Most Commented Posts”

  1. [...] This post was mentioned on Twitter by Blog Vsemmir, cmdesign. cmdesign said: List of The Most Commented Posts http://bit.ly/clvZkz [...]

  2. List of The Most Commented Posts code snippets!
    Enjoy!

  3. List of The Most Commented Posts code snippets!
    Should work!

  4. this what i am looking for thanks for this post.

  5. Helpful information Thanks for the information . I found this website using msn . I love this website very much and this is my first comment on this website . I have bookmarked it and come back . if you won’t to see my blog click here

Leave a Reply

You must be logged in to post a comment.

© 2009 | Made by Vancouver Web Design | Internet Marketing