首页 > CMS > PhpCMS > 正文

phpcms v9实现类别列表的栏目调用

2024-07-09 22:53:04
字体:
来源:转载
供稿:网友
phpcms v9在对应的栏目列表里,调出该栏目所属的所有类别,形成一个类别列表的调用方法比较简单.如下:


<?php
$arrtype = explode(',',$usable_type);
?>
{loop $arrtype $t}
<a href="index.php?m=content&c=type&catid={$catid}&typeid={$t}">{$TYPE[$t][name]}</a>
{/loop}



效果就类似:
<a href="index.php?m=content&c=type&catid=9&typeid=54">转载</a>
<a href="index.php?m=content&c=type&catid=9&typeid=53">原创</a>


需要注意的是,在上面给出的代码开始之前,必须引入
<?php $TYPE = getcache('type_content','commons');?>
这一句代码.否则 $TYPE 没有定义,就是空白的.另外类别的链接也需要上面那个帖子的辅助.
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表