确认自己使用的主题名称
-
在仪表盘——外观——主题 目前使用的主题是twwntyseventeen
修改配置文件
- 在wordpress根目录,依次进入到主题文件夹下,twentyseventeen根据上一步主题名称而定,修改当前主题文件夹下的index.php
vi wp_content/themes/twentyseventeen/index.php
- 大概在46行 将第二个参数get_post_format() 修改为 'excerpt'
get_template_part( 'template-parts/post/content', get_post_format() );
改
get_template_part( 'template-parts/post/content', 'excerpt' );
- 此时首页只显示了摘要
- 同理,为了实现在点击分类目录名以后,分类目录下的文章也以这种方式显示,找到archive.php文件,按上述方式修改,保存刷新一下页面,就会看到实现了文章只显示标题和摘要的效果了!