显示评论最多的帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示评论最多的帖子相关的知识,希望对你有一定的参考价值。

To display a list of your 10 most commented posts from 2008, simply paste the following code on your blog sidebar, or anywhere on your theme.
  1. <h2>Most commented posts from 2008</h2>
  2. <ul>
  3. <?php
  4. $result = $wpdb->get_results("SELECT comment_count,ID,post_title, post_date FROM $wpdb->posts WHERE post_date BETWEEN '2008-01-01' AND '2008-12-31' ORDER BY comment_count DESC LIMIT 0 , 10");
  5.  
  6. foreach ($result as $topten) {
  7. $postid = $topten->ID;
  8. $title = $topten->post_title;
  9. $commentcount = $topten->comment_count;
  10. if ($commentcount != 0) {
  11. ?>
  12. <li><a href="<?php echo get_permalink($postid); ?>"><?php echo $title ?></a></li>
  13. <?php }
  14. }
  15. ?>
  16. </ul>

以上是关于显示评论最多的帖子的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress - 显示2009年评论最多的帖子

Wordpress-显示2009年评论最多的帖子

通过Wordpress rss feed显示过去7天内观看次数最多的观看次数

2021-12-24:划分字母区间。 字符串 S 由小写字母组成。我们要把这个字符串划分为尽可能多的片段,同一字母最多出现在一个片段中。返回一个表示每个字符串片段的长度的列表。 力扣763。某大厂面试

编写 Eloquent Query 以查找得票最多的帖子 Laravel

Mongoose 查询:填充来自 Post Schema 的前 2 条评论