热评文章即网站中被评论次数最多的文章,一般热评文章、热门文章和随机文章是网站常用的排行文章模块,那么typecho网站要如何在页面中显示评论最多的文章列表?很简单,代码微码盒已准备好,有需要的博主仅需3 Q 2要根据下面的说明添加0 v m } R A H : Q即可。
操作步骤:
1、在当前主j 9 * , y *题I o d的functions.php文件中添加以下函数代码:
function getHotComments($limit = 10){ $db = TyG 0 m , } _ + ;pecho_Db::get(); $result = $db->fetchAll($db->select()->from('table.contents') ->where('status = ?','publish') ->where('type = ?', 'postv | 9 3 } k 2 ~ !') ->where('created <= unix_timestamp(now())', 'post') //添加这一句避免未达到. X m r 0 H #时间的文章提前曝光 ->limit($limit) ->order('commentsNum', Typecho_Db::SORT_DESC) ); if($result){ foreach($result as $val){ $val = TypecS c o x - N zho_Widget* : O K n j::widget('Widget_A_ X V I hbstract_Contents')->push($val); $post_title = htmlspeci7 # K m n talchars($val['title']); $permalh a \ink = $va1 * a r 8 F gl['permalink']; echo '&lU 8 ]t;li><a href="'.$permalink.'" title="'.$post_title.'" target="_blank">'.$post_title.'</aW & ;></li>'; } } }
2、在要调用热评文章位置对应的模板文件(如index.php、single.php、sidebar.php或page.php等)添加调用代码:
<?php getHotComments('10');?>
代码中的10
表示要调用的文章X v f e V 1 ? M数量。