帝国CMS首页/列表页/内容页调用TAG标签的方法

帝国CMS想要在各个页面显示TAG标签,网上已经有很多教程,不过大部分人给的方法都是直接在模板里写一堆代码,今天就整理下写成函数,这样调用起来会更方便。

注意:本教程的前提是你先做了帝国CMS的Tags伪静态(https://www.xxside.com/3418.html)的基础上进行设置。

只需要将代码添加到userfun.php中:

function taglinks($aid, $num=5, $tbname='news')
{
        global $public_r,$dbtbpre,$empire,$navinfor,$class_r;
        $qr = $empire->fetch1("select rewritetags from {$dbtbpre}enewspublic limit 1");
        $sr = $empire->fetch1("select stb from {$dbtbpre}ecms_{$tbname} where id=$aid");
        $fr = $empire->fetch1("select infotags from {$dbtbpre}ecms_{$tbname}_data_{$sr[stb]} where id=$aid");
        $tagstr = ''.$fr[infotags].'';
        $tagarr = explode(",", $tagstr);
        for($i=0; $i<count($tagarr) && $i<$num; $i++)
        {
                if($tagarr[$i])
{
                $tr = $empire->fetch1("select * from {$dbtbpre}enewstags where tagname='".$tagarr[$i]."'");
                if($qr[rewritetags]) { // 开启伪静态
                                $link = $public_r[newsurl]."tags-".$tr[tagid]."-0.html";
                } else { // 动态链接
                                $link = $public_r[newsurl]."e/tags/?tagid=".$tr[tagid];
                }
                $tags .= "<a href='$link' target='_blank'>".$tagarr[$i]."</a> ";
}
        }
        return $tags;
}

参数:文章ID,调用标签数量,表名

灵动标签调用

<?=taglinks($bqr[id])?>

列表页,勾选list.var使用程序代码,代码示例

$listtemp='
<li>
        <h3><a href="[!--titleurl--]">[!--title--]</a></h3>
        <p>[!--smalltext--]</p>
        <p>'.taglinks($r[id]).'</p>
</li>
';

内容页调用

<?=taglinks($navinfor[id])?>

原创文章,作者:Tony,如若转载,请注明出处:https://www.xxside.com/3421.html

思德心语,壹群:799239814

(0)
上一篇 2020年8月5日 上午9:59
下一篇 2020年8月6日 上午11:20

相关推荐

发表评论

登录后才能评论