Browse » Home » Blogging »Create Popular Post WordPress Without Plugin

Create Popular Post WordPress Without Plugin

[thebestsolver.com]How to  Create Popular Post WordPress Without Plugin ? very simple, just copy paste code below in sidebar.php your themes or wherever place that you like !

<ul>
<?php
$popular_posts = $wpdb->get_results("SELECT id,post_title FROM {$wpdb->prefix}posts ORDER BY comment_count DESC LIMIT 0,7");
foreach($popular_posts as $post) {
print "<li><a href=. get_permalink($post->id) .>".$post->post_title."</a></li>
";
}
?>
</ul>
Related Posts Plugin for WordPress, Blogger...keywords : popular post without pluginwordpress popular post without pluginwordpress popular posts without plugincreate populer wordpresspopular post plugin wordpress
Rating: 5» 99% like it» Reviewed by Best Solver on In Create Popular Post WordPress Without Plugin

2 Responses to “Create Popular Post WordPress Without Plugin”

  1. RahmanAulia says:

    thanks,,,

  2. AL AMIN DAWA says:

    Actually it’s a nice posts.
    How to make it based views, not comment count…?

Leave a Reply