我使用以下代码片段自动将过长的帖子拆分为多个页面
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-->
标记会打断当前页。