主题文件夹下面的 content.php 文件,大约 47 行的位置,默认是只有搜索页面才会显示摘要所以将其修改为:
<?php if ( is_search() || is_category() || is_archive() || is_home() ) : ?> <div> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> |
主题文件夹下面的 content.php 文件,大约 47 行的位置,默认是只有搜索页面才会显示摘要所以将其修改为:
<?php if ( is_search() || is_category() || is_archive() || is_home() ) : ?> <div> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> |
style.css中删除 .site-header 中的 max-width 一行,
在最后加入如下内容:
/**
* 以下内容设置让页面占满 100%
* —————————————————————————–
*/
.site,
.site-header {
max-width: 100%;
}