Typecho主题插件站
每一个作品都值得被记录

Typecho 输出所有分类下的文章列表

Typecho爱好者开发日志 • 3936次浏览 • 发布 2018-07-11 • 更新 2018-07-11
极致加速的V2Ray 助您畅享全球网络 & 搬瓦工VPS最新优惠码

Typecho 输出所有分类下的文章列表的代码实现:

/* 循环所有的分类 */
<?php $this->widget('Widget_Metas_Category_List')->to($categories); ?>
<?php while ($categories->next()): ?>
 
/* 循环当前分类下的文章 */
<?php $this->widget('Widget_Archive@category-' . $categories->mid, 'pageSize=7&type=category', 'mid=' . $categories->mid)->to($posts); ?>
<div class="posts">
<?php while ($posts->next()): ?>
<?php if (1 == $posts->sequence): ?>  //判断第一篇文章
<h3>[<?php $categories->name(); ?>]:<a href="<?php $posts->permalink(); ?>"><?php $posts->title(43); ?></a></h3>
<?php $posts->excerpt(120, '...'); ?>
<ul class="post-list">  //文章列表
<?php else: ?>
<li>
<a href="<?php $posts->permalink(); ?>"><?php $posts->title(40); ?></a>
<span class="comment-num">(<?php $posts->commentsNum(); ?>)</span>
</li>
<?php endif; ?>
<?php endwhile; ?>
</ul>
</div>
<?php endwhile; ?>

本文检索关键词:typecho
厂商投放
添加新评论 »