这里实现Zblog 热门文章、阅读浏览数最多文章调用的方法主要是通过修改include.php主题文件的代码来实现,废话不多说,直接上手。
首先完成以下代码
添加到主题的include.php文件:
function hot_article($num){
global $zbp,$hot;
$hot .= '';
$array = $zbp->GetArticleList(array('*'),array(array('=','log_Status','0')),array('log_ViewNums'=>'DESC'),array($num),'');
foreach ($array as $article) {
$hot .= '<li><a href="'.$article->Url.'" title="'.$article->Title.'">'.$article->Title.'</a></li>';
}
$hot .= '';
return $hot;
}
然后将以上代码添加到include.php的主题文件中
最后在要显示热门文章列表的模板位置添加调用代码:
{hot_article('10')}
其中的10表示要显示的数量。
保存并运行,效果达成。