阿里云限量代金券 | 此广告位出租25元/月 |
对于一个网站来说,相关文章功能是有必要的,可以增加网站访客的黏性从而起到增加网站的pv的效果(当然肯定不止这一个效果啦)。本文为大家介绍下zblogphp添加相关文章功能的代码。
一共两种方法,第一种是zblog官方比较推荐的方法,代码如下:
{$aid=$article.ID} {$tagid=$article.Tags} {$cid=$article.Category.ID} {php} $str = ''; $tagrd=array_rand($tagid); if( sizeof($tagid)>0 && ($tagid[$tagrd]->Count)>1){ $tagi='%{'.$tagrd.'}%'; $where = array(array('=','log_Status','0'),array('like','log_Tag',$tagi),array('<>','log_ID',$aid)); }else{ $where = array(array('=','log_Status','0'),array('=','log_CateID',$cid),array('<>','log_ID',$aid)); } $array = $zbp->GetArticleList(array('*'),$where,array('rand()'=>' '),array(6),''); foreach ($array as $related) { if(($related->ID)!=$aid){ $str .= "<li><span class=\"time\">{$related->Time('m-d')}</span><span class=\"title\"><i class=\"icon-doc-text\"></i><a href=\"{$related->Url}\" title=\"{$related->Title}\">{$related->Title}</a></span><small class=\"pcomm\"><i class=\"icon-comment-1\"></i> <a href=\"{$related->Url}#comments\" rel=\"nofollow\" title=\"《{$related->Title}》上的评论\">{$related->CommNums}</a></small></li>"; } } {/php} {$str}
第二种用到的是zblogphp的“GetList“函数,代码如下:
{foreach GetList(10,null,null,null,null,null,array('is_related'=>$article.ID)) as $related} <li><span>{$related.Time('Y-m-d')}</span><a href="{$related.Url}">{$related.Title}</a></li> {/foreach}
把以上代码放置到你正在使用的主题内的”post-single.php“文件内即可,一般推荐放在”{$article.Content}“下面吧,css自己定义即可。
当然我们也可以用第三方的”相关文章“插件来替换zblogphp原生的相关文章功能。比较推荐的插件有”百度推荐(官网地址)“、”友荐(官网地址)“。大家可根据自身需求选择适合的相关文章功能。
原文转自 天兴工作室
原文链接:https://www.txcstx.cn/post/760.html
推荐您阅读更多有关于“”的文章
Powered By Z-Blogphp
分享:
支付宝
微信