Pages

Thursday, May 5, 2011

Display Most Popular Posts in WordPress


Place below code where you want to display your Most Popular Posts:
<h2>Popular Posts</h2>
<ul>

<?php $result = $wpdb->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 ?>">
<?php echo $title ?></a> {<?php echo $commentcount ?>}</li>
<?php } } ?>
</ul>
Just change the 5 in line 3 to change the number of displayed popular posts. That’s it.

0 comments:

Post a Comment

Note: Only a member of this blog may post a comment.