标签 "分类" 下的文章

共找到 5 篇文章

获取分类描述

· 1 分钟阅读
<?php echo $this->getDescription(); ?>案例演示: <?php $this->widget('Widget_Metas_Category_List') ->parse('<li><a href="{permalink}" title="{description}">{name}</a> (...

像CMS一样 - 输出所有分类+文章

· 4 分钟阅读
像CMS那样,输出全部分类,并按分类输出文章: <?php $this->widget('Widget_Metas_Category_List')->to($categories); ?> <?php while ($categories->next()): ?> <?php $this-...

输出全部分类 - 当前分类current

· 3 分钟阅读
输出全部分类,并对当前分类current标记: <ul id="nav_menu"> <?php $this->widget('Widget_Metas_Category_List')->to($category); ?> <?php while ($category->next()): ?> <li<?php if ($this-...

判断当前分类并自定义内容

· 1 分钟阅读
<?php if($this->category == "help"): ?> //当前分类为help缩略图,则输出内容。 <?php endif; ?>可应用于自定义分类,或者,判断某些分类输出不同CSS。