与您更改任何其他屏幕上显示的帖子WP的方式相同,pre_get_posts
! 如果您曾经看到WP pull-in帖子,并且想要修改它从DB中获取的内容,请使用pre_get_posts
滤器
E、 g.类似于此:
add_action( \'pre_get_posts\', function( \\WP_Query $query ) {
if ( !$query->is_feed() ) {
return; // this isn\'t a feed, abort!
}
$query->set( \'post_status\', \'publish\' ); // we only want published posts, no drafts or private
} );