无论是网站,还是博客,在网络阅读完一篇文章的时候,文章底部“上一页”和“下一页”的阅读功能是普遍的。但是对于不懂PHP语言的小伙伴们,在wordpress添加这一功能并非是一件简单的事。为了帮助小伙伴解决这种简易的问题,下面分享几种解决方案:
方法一:
<?php
//上下篇文章
if (the_post_navigation(array(
'prev_text' => __('<span class="em-post-navigation">上一页</span> %title', 'covernews'),
'next_text' => __('<span class="em-post-navigation">下一页</span> %title', 'covernews'),
'in_same_term' => true,
'taxonomy' => __('category', 'covernews'),
'screen_reader_text' => __('Continue Reading', 'covernews'),///
);
?>
方法二:
<?php the_post_navigation(); ?>//上下文章
方法三:
<?php previous_post_link('上一篇:%link'); ?>
<?php next_post_link('下一篇:%link'); ?>