您的主题正在使用旧的和不推荐使用的函数link_pages
显示分页帖子的页面链接。
只需替换这段代码:
<div class="pagelink"><?php wp_link_pages(\'pagelink=Source %\'); ?></div>
<div class="format_text">
<?php the_content(\'<p>Read the rest of this entry »</p>\'); ?>
<?php link_pages(\'<p><strong>Pages:</strong> \', \'</p>\', \'number\'); ?>
</div>
使用此选项:
<div class="format_text">
<?php the_content(\'<p>Read the rest of this entry »</p>\'); ?>
<?php wp_link_pages( array( \'before\' => \'<div class="page-link">Pages:\', \'after\' => \'</div>\', \'pagelink\' => \'Source %\' ) ); ?>
</div>