-
织梦技巧
织梦实现自动统计当前栏目文档文章总数的方法,在织梦(DedeCMS)中,我们可以利用自定义函数来实现各种效果,实现的具体方法为: 1.在/include/extend.func.php 文件的?上一行加入以下代码: 代码如下: function GetTypeNum($tid){ global $dsql; $row = $dsql-GetOne(select count(*) as dd from dede_archives where typeid = $tid); return $row[dd]; ...
196