当前位置: 首页 > 站长资讯 > 正文页面

如何实现Dedecms 每个tag显示相应的文章数量

今天这个教程分享,是A5源码小编在工作之余,因为一位客户咨询,如何让dedecms的tag显示相应的文章数量。当时小编我还没有反映过来他说的是什么问题。YxO网站目录_网站网址收录与提交入口

后面客户解释说就是和类似于wordpress那样的tag,就是在显示tag的链接和tag名的同时,还能显示每个tag关联的文章的数量。YxO网站目录_网站网址收录与提交入口

这下小编恍然大悟,经过尝试“虐待度娘”,终于找到了处理方案。YxO网站目录_网站网址收录与提交入口

wordpress tag关联的文章的数量效果如下:YxO网站目录_网站网址收录与提交入口


YxO网站目录_网站网址收录与提交入口

实现DeDecms 每个tag显示相应的文章数量方案:YxO网站目录_网站网址收录与提交入口

文本编辑器(editplus)打开文件目录为:…../include/taglib/tag.lib.php (大致在87行左右)YxO网站目录_网站网址收录与提交入口

查找:YxO网站目录_网站网址收录与提交入口

1 “$row['link'] = $cfg_cmsurl."/tags.php?/".urlencode($row['keyword'])."/";‘YxO网站目录_网站网址收录与提交入口

在以上代码下添加如下代码:YxO网站目录_网站网址收录与提交入口

1 $count = $dsql->GetOne("Select count(tid) From `dede_taglist` where tag = '".$row['tag']."'");$row['count'] = $count['count(tid)'];YxO网站目录_网站网址收录与提交入口

2 //注意:dedecms的表前缀为默认表前缀(dede_)YxO网站目录_网站网址收录与提交入口

添加好后就可以通过[field:count/]来获取当前tag标签关联的文章数量了。YxO网站目录_网站网址收录与提交入口

例如:YxO网站目录_网站网址收录与提交入口

1 {dede:tag sort='hot' getall='2'}YxO网站目录_网站网址收录与提交入口

2

  • [field:tag /]YxO网站目录_网站网址收录与提交入口

YxO网站目录_网站网址收录与提交入口

3 {/dede:tag}YxO网站目录_网站网址收录与提交入口

总结:通过以上方案就可以实现tag标签关联的文章数量了,但是站长同学们切记,做任何修改前,必须提前备份好文件,以免修改出错大致网站异常。YxO网站目录_网站网址收录与提交入口

YxO网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章