godzilla
Typecho 双栏主题。
预览
下载
列表页和文章页头顶的图片设置:
如果需要设置,只要在添加文章时增加自定义字段 banner
首页菜单栏下面推荐置顶设置方法
很简单,只要在文章增加一个top
的标签就可以了!
然后再 header.php
把
<?php if ($this->is(‘index’)&&false): ?>
推荐置顶:<?php $this->widget('Widget_Archive@indextop', 'pageSize=1&type=tag', 'slug=top')->parse('<a href="{permalink}" title="{title}" target="_blank">{title}</a>'); ?>
<?php else: ?>
改为
<?php if ($this->is('index')): ?><!-- 页面为首页时 -->
推荐置顶:<?php $this->widget('Widget_Archive@indextop', 'pageSize=1&type=tag', 'slug=top')->parse('<a href="{permalink}" title="{title}" target="_blank">{title}</a>'); ?>
<?php else: ?>
评论区