如果您谈论的是使用<!--nextpage-->
标签,则必须使用the_content_feed
钩子去掉标签并传递全部内容。我尝试了以下代码(&A);它正是这样做的。但请注意,它会将所有帖子的全部内容传递到RSS提要。
add_action(\'the_content_feed\', \'strip_nextpage_tag_for_rss\');
function strip_nextpage_tag_for_rss() {
global $post;
$content = apply_filters(\'the_content\', $post->post_content);
$content = str_replace( "\\n<!--nextpage-->\\n", \'\', $content );
$content = str_replace( "\\n<!--nextpage-->", \'\', $content );
$content = str_replace( "<!--nextpage-->\\n", \'\', $content );
$content = str_replace( "<!--nextpage-->", \'\', $content );
$content = str_replace( "<p><!–nextpage–></p>", \'\', $content );
$content = str_replace( "<p><!--nextpage--></p>", \'\', $content );
return $content;
}
在主题函数中放置上述代码。php文件。我希望这有帮助。