如何显示特定类别中最受欢迎的帖子

Posted

tags:

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

  1. <?php
  2. $args=array(
  3. 'cat' => 3,
  4. 'orderby' => 'comment_count',
  5. 'order' => 'DESC',
  6. 'post_type' => 'post',
  7. 'post_status' => 'publish',
  8. 'posts_per_page' => 6,
  9. 'caller_get_posts'=> 1
  10. );
  11. $my_query = null;
  12. $my_query = new WP_Query($args);
  13. if( $my_query->have_posts() ) { ?>
  14. <ul>
  15. <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
  16. <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
  17. <?php endwhile; ?>
  18. </ul>
  19. <?php }
  20.  
  21. wp_reset_query(); ?>
  22.  
  23.  

以上是关于如何显示特定类别中最受欢迎的帖子的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 类别模板显示来自所有类别的帖子,而不是特定类别的帖子

从 WordPress 中的特定类别获取置顶帖子

显示月存档链接中特定类别的帖子?

PHP 在页面上以随机顺序显示特定类别的所有帖子

从特定的 Wordpress 类别中提取帖子

PHP Wordpress - 仅在特定类别的第一页上显示精选帖子