7.0列出当前栏目下的标题分类名称和静态链接
找了很久没找到,后来根据大神的这个帖子稍微改了一下,试了试可以使用。
http://bbs.phome.net/ShowThread/?threadid=188117&forumid=13

<?php
    $ttids_sql=sys_ReturnEcmsLoopBq("select ttids from [!db.pre!]enewsclassadd where classid=$GLOBALS[navclassid]",0,24,0);

    while($bqr=$empire->fetch($ttids_sql))
    {

    $ttids=explode(',',trim($bqr[ttids],","));
    foreach($ttids as $id)

        {
    $ttname_sql=sys_ReturnEcmsLoopBq("select  tname,tpath from [!db.pre!]enewsinfotype where typeid=$id",0,24,0);
    while($bqr2=$empire->fetch($ttname_sql))

        {
    ?>


<li><a href="[!--news.url--]<?=$bqr2[tpath]?>"><?=$bqr2[tname]?></a></li>

    <?php
    }
    }
    }
    ?>

注意事项:
该栏目下必须指定了标题分类才可以调用出来 否则显示
SQL Error: select tname,tpath from ***_enewsinfotype where typeid=

最后修改:2022 年 10 月 07 日
如果觉得我的文章对你有用,请随意赞赏
END
本文作者:
文章标题:ecms7.0列出当前栏目下的标题分类名称和静态链接
本文地址:https://www.jijidui.cn/archives/23.html
版权说明:若无注明,本文皆记记对Blog原创,转载请保留文章出处。