东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国CMS二次开发按tags分类调用标签教程

2019-03-16 站长 站长日志

帝国CMS按tags分类调用标签代码

<?
$tagql=$empire->query("select tagid,tagname,path from {$dbtbpre}enewstags where cid in(1,2,3,4,5,6,7) and isgood=1 order by cid asc limit 20");
$bqno=1;
while($r=$empire->fetch($tagql))
{
?>
<li ><a href="/tag/<?=$r[path]?>.html" target="_blank"><?=$r[tagname]?></a></li>
<?php
$bqno++;   
}
?>

in(1,2,3,4,5,6,7)为指定的tags分类ID

limit 20调用20条信息

文章评论