Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <?php
  2. $i = 0;
  3. global $wpdb;
  4. $result = $wpdb->get_results("SELECT comment_count,ID,post_title,post_excerpt FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 6");
  5. foreach ($result as $post) {
  6. $i = $i + 1;
  7. setup_postdata($post);
  8. $postid = $post->ID;
  9. $commentcount = $post->comment_count;
  10. if ($commentcount != 0) { ?>
  11. <div class="box grid2 number<?php echo $i ?>">
  12. <a href="<?php echo get_permalink($postid); ?>"><?php get_image('image','138','63','thumbnail',90,null,'img'); ?></a>
  13. <h4><a href="<?php echo get_permalink($postid); ?>"><?php echo get_the_title($postid); ?></a></h4>
  14. <p><?php echo get_the_excerpt($postid); ?></p>
  15. <a class="more" href="<?php echo get_permalink($postid); ?>">Read more</a>
  16. </div>
  17. <?php } } ?>
Add Comment
Please, Sign In to add comment