人间清醒特约评论官 發表於 2023-6-26 00:00:00

dedecms 每个栏目下的文章总数的调用

<p>
        <span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>我是根据5.3里面修改的,本人测试了可以,大家可不可以就不知道了,若不可以的可以在下面回帖 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>打开include/common.func.php文件 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>在最后的?&gt;之前加上 </span></p>
<div class="msgheader" style='margin: 3px auto 0px; padding: 0px 3px; outline: none; line-height: 21.6px; clear: both; border-width: 1px; border-style: solid; border-color: rgb(0, 153, 204); background: rgb(246, 251, 255); overflow: hidden; font-family: tahoma, arial, "Microsoft YaHei";'>
        <p class="right">
                <span><u>复制代码</u></span></p>
        <p>
                代码如下:</p>
</div>
<p class="msgborder" style='margin: 0px auto 3px; padding: 0px 3px; outline: none; line-height: 25.2px; font-size: 14px; clear: both; border-right: 1px solid rgb(0, 153, 204); background: rgb(221, 237, 251); overflow: hidden; border-left: 1px solid rgb(0, 153, 204); word-break: break-all; border-bottom: 1px solid rgb(0, 153, 204); word-wrap: break-word; font-family: tahoma, arial, "Microsoft YaHei";'>
        <br>
        //统计栏目文章数 <br>
        function GetTotalArc($tid){ <br>
        global $dsql; <br>
        $sql = GetSonIds($tid); <br>
        $row = $dsql-&gt;GetOne("Select count(id) as dd From dede_archives where typeid in({$sql})"); <br>
        return $row['dd']; <br>
        } </p>
<p>
        <br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>然后就可以在模板上用 </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>{dede:channel type='son' row='20'} </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>&lt;dl&gt;&lt;a href=''&gt;&lt;/a&gt;(&lt;span&gt; @me = GetTotalArc(@me);) &lt;/dl&gt; </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>{/dede:channel} </span><br style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'><span style='font-family: tahoma, arial, "Microsoft YaHei"; font-size: 14px;'>进行调用, @me = GetTotalArc(@me);这个就是调用的总数.</span></p>
頁: [1]
查看完整版本: dedecms 每个栏目下的文章总数的调用