WordPress 默认主题 如果语言为简体中文时,在文章结尾处 “上一篇”和“下一篇” 链接会缺失“篇”字,可以通过下面方法解决:在 外观>编辑>文章页面(single.php) 的结尾处找到以下代码
原来的代码:
‘next_text’ => ‘‘ . ( ‘Next’, ‘twentysixteen’ ) . ‘ ‘ . ‘‘ . ( ‘Next post:’, ‘twentysixteen’ ) . ‘ ‘ .
‘%title‘,
‘prev_text’ => ‘‘ . ( ‘Previous’, ‘twentysixteen’ ) . ‘ ‘ . ‘‘ . ( ‘Previous post:’, ‘twentysixteen’ ) . ‘ ‘ .
‘%title‘,
改成下面的代码即可:
‘next_text’ => ‘‘ . ( ‘Next post:’, ‘twentysixteen’ ) . ‘ ‘ . ” . ( ‘Next post:’, ‘twentysixteen’ ) . ‘ ‘ .
‘%title’,
‘prev_text’ => ‘‘ . ( ‘Previous post:’, ‘twentysixteen’ ) . ‘ ‘ . ” . ( ‘Previous post:’, ‘twentysixteen’ ) . ‘ ‘ .
‘%title’,