帝国cms借助自定义列表实现tag标签聚合页


avatar
pcwnas 2023-04-25 156

原文来自:https://liye5.com/

tag列表模板主要代码:

<ul>
[!--empirenews.listtemp--]<!--list.var1-->[!--empirenews.listtemp--]
</ul>

<div class="pagebar">
[!--show.listpage--]

</div>

list.var代码:

$listtemp='
<a href="/tag/[!--id--].html" target="_blank">[!--title--]</a>
';

自定义列表查询SQL语句:

1、统计记录:select count(*) as total from phome_enewstags
2、查询记录:select tagname as title, tagid as id from [!db.pre!]enewstags order by tagid desc

其中排序可以自行更改 order by xxx