是否在帖子中的‘<!--nextpage-->’标记前自动添加指向下一页链接的链接?

时间:2013-06-23 作者:unfulvio

我使用以下代码片段自动将过长的帖子拆分为多个页面

function filter_more_with_nextpage( $content ){

    $content = str_replace( \'<!--more-->\', \'<!--nextpage-->\', $content );
    $content = preg_replace( \'/<!--nextpage-->/i\', \'<!--more-->\', $content, 1 );

    return $content;
}
add_filter( \'content_save_pre\', \'filter_more_with_nextpage\' );
很有魅力,但我想自动添加链接<a> 元素,以帮助将用户定向到下一页。

我不希望将链接手动(从wp后端)放入帖子内容中,也不希望将其自动插入帖子内容中(我不希望将其保存在帖子本身中)。相反,我希望在之前生成它<!--nextpage--> 标记会打断当前页。

1 个回复
最合适的回答,由SO网友:Krzysiek Dróżdż 整理而成

如果您使用<!--nextpage--> 标记,然后您可以使用wp_link_pages 作用把它放在你的single.php 样板

结束

相关推荐

Pagination for two loops

我知道之前已经讨论过这个问题,但我似乎无法将它与其他主题中发布的任何解决方案配合使用。如何对这样的循环进行分页: <div id=\"first-loop-container\"> <?php $my_query = new WP_Query(\'showposts=5\'); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(