何为热门文章,一是点击量最多,或者是评论数最多,如果按点击量来遍历,首先你的数据库里要有记录浏览次数的字段,这里介绍使用评论数量来实现免插件的热门文章调用。这里主要是调用了 get_posts
函数。
<ul> <?php $hot_posts = get_posts(‘numberposts=10&order=ASC&orderby=comment_count’); foreach( $hot_posts as $post ) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>
orderby=comment_count
,表示按评论数量排序,通常评论越多,文章越热门。