Questions tagged «wp-link-pages»

6
分页帖子-如何使用数字和下一个/上一个链接?
我希望wp_link_pages(多页帖子)显示页码,在这些数字之前显示单词“ previous”,在这些数字之后显示“ next”。它看起来像这样: 上一页1、2、3、4下一页 我正尝试在没有插件的情况下执行此操作。到目前为止,这是我尝试过的方法,但是它不起作用,仅显示数字。 <?php wp_link_pages(array( 'before' => '<span style="clear:both; display:block">Pages', 'after' => '</span>', 'next_or_number'=>'number', 'previouspagelink' => 'previous', 'nextpagelink'=> 'Next' )); ?>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.