Most Commented Posts
-
Hi! I’ve found a great short code to show the last X most commented posts. But it seems it doesn’t work very well as it’s actually not showing the most commented posts…
Here is my code:
<?php $popular = new WP_Query('orderby=comment_count&posts_per_page=6'); ?> <?php while ($popular->have_posts()) : $popular->the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Read: <?php the_title(); ?>"><?php the_title(); ?></a> <?php endwhile; ?> <?php wp_reset_query(); ?>See, it’s simple (contrary to the many codes I’ve seen before…) but it doesn’t work. Any help is welcome! Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Most Commented Posts’ is closed to new replies.