WordPress自带的Twenty Fifteen主题模板默认在首页和分类列表页是输送出显示全文,看得仙杰是脑瓜疼呀。虽然WordPress的界面很漂亮,但是管用的主题排版问题不太符合SEO优化和常人审美阅读浏览习惯。下面是改成摘要显示的方法,最实用的一个方法就可以改善这个弊端!
Twenty Fifteen模板首页全文显示改为摘要显示
编辑器打开/wp-content/themes/twentyfifteen/目录下的index.php和archive.php两个文件,查找以下代码:
1
|
get_template_part( ‘content’, get_post_format() );
|
替换成以下代码:
1
|
get_template_part( ‘content-search’, get_post_format() );
|
其实就是将这两个文件此代码中的content改为content-search
另一种方法:编辑器打开/wp-content/themes/twentyfifteen/目录下的content.php文件,查找到以下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
‘, ‘‘, false )
) );
wp_link_pages( array(
‘before‘ => ‘
‘ . __( ‘Pages:‘, ‘twentyfifteen‘ ) . ‘‘,
‘after‘ => ‘
‘,
‘link_before‘ => ‘‘,
‘link_after‘ => ‘‘,
‘pagelink‘ => ‘‘ . __( ‘Page‘, ‘twentyfifteen‘ ) . ‘ %‘,
‘separator‘ => ‘, ‘,
) );
?>
|
替换成以下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
‘, ‘‘, false )
) );
wp_link_pages( array(
‘before‘ => ‘
‘ . __( ‘Pages:‘, ‘twentyfifteen‘ ) . ‘‘,
‘after‘ => ‘
‘,
‘link_before‘ => ‘‘,
‘link_after‘ => ‘‘,
‘pagelink‘ => ‘‘ . __( ‘Page‘, ‘twentyfifteen‘ ) . ‘ %‘,
‘separator‘ => ‘, ‘,
) );
else :
/* translators: %s: Name of current post */
the_excerpt( sprintf(
__( ‘Continue reading %s‘, ‘twentyfifteen‘ ),
the_title( ‘‘, ‘‘, false )
) );wp_link_pages( array(
‘before‘ => ‘
‘ . __( ‘Pages:‘, ‘twentyfifteen‘ ) . ‘‘,
‘after‘ => ‘
‘,
‘link_before‘ => ‘‘,
‘link_after‘ => ‘‘,
‘pagelink‘ => ‘‘ . __( ‘Page‘, ‘twentyfifteen‘ ) . ‘ %‘,
‘separator‘ => ‘, ‘,
) );
endif;
?>
|
如果文章对你有帮助欢迎评论转载 请备注来源于本站,给个反链的机会嘛!感谢
THE END