Typecho 调用自定义分类最新文章
调用某分类最新文章,pageSize是数量,mid是分类号,代码如下
<?php $this->widget('Widget_Archive@index', 'pageSize=6&type=category', 'mid=1')
->parse('<li><a href="{permalink}">{title}</a></li>'); ?>
另外一种写法:
<?php $this->widget('Widget_Archive@index', 'pageSize=6&type=category', 'mid=1')->to($indexpub); ?>
<?php while($indexpub->next()): ?>
<li><a href="<?php $indexpub->permalink(); ?>"><?php $indexpub->title() ?></a></li>
<?php endwhile; ?>
注意使用这种用法调用多次时@index要改成不同的名称
广告声明:文内含有的对外跳转链接(包括不限于超链接、二维码、口令等形式),用于传递更多信息,节省甄选时间,结果仅供参考,Typecho.Wiki所有文章均包含本声明。