/**
*WordPress 解决使用文章分页后 RSS Feed 无法全文输出
*https://www.weixiaoduo.com/post-pagination-rss-feed/
*/
functionBing_full_text_for_feeds($content){
if(!is_feed())return$content;
global$post;
$content=$post->post_content;
return$content;
}
add_filter('the_content','Bing_full_text_for_feeds',-100);