1 Star 7 Fork 2

Übermorgen/Typecho Millennium Style主题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sidebar.php 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
Übermorgen 提交于 2022-10-30 05:59 . !22.1,脱离TePostViews依赖
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<div class="col-mb-12 col-offset-1 col-3 kit-hidden-tb" id="secondary" role="complementary">
<?php if (!empty($this->options->modelBlock) && in_array('ShowOther', $this->options->modelBlock)): ?>
<!-- 随机文章 -->
<section class="widget">
<h3 class="widget-title"><?php _e('手气不错'); ?></h3>
<ul class="widget-list">
<?php outputRandomPosts($this->options->randompostcount); ?>
</ul>
</section>
<?php endif; ?>
<?php if (!empty($this->options->modelBlock) && in_array('ShowRecentComments', $this->options->modelBlock)): ?>
<!-- 最近回复 -->
<section class="widget">
<h3 class="widget-title"><?php _e('最近回复'); ?></h3>
<ul class="widget-list">
<?php \Widget\Comments\Recent::alloc('ignoreAuthor=true')->to($comments); ?>
<?php while ($comments->next()): ?>
<li>
<a href="<?php $comments->permalink(); ?>"><?php $comments->author(false); ?></a>: <?php $comments->excerpt(18, '...'); ?>
</li>
<?php endwhile; ?>
</ul>
</section>
<?php endif; ?>
<?php if (!empty($this->options->modelBlock) && in_array('ShowCategory', $this->options->modelBlock)): ?>
<!-- 文章分类 -->
<section class="widget">
<h3 class="widget-title"><?php _e('分类'); ?></h3>
<?php \Widget\Metas\Category\Rows::alloc()->listCategories('wrapClass=widget-list'); ?>
</section>
<?php endif; ?>
</div><!-- end #sidebar -->
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/stsiao/millennium-style.git
git@gitee.com:stsiao/millennium-style.git
stsiao
millennium-style
Typecho Millennium Style主题
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891