如果要更改提要中显示的内容,请使用the_content_feed
过滤器:
add_filter( \'the_content_feed\', function ( $content, $feed_type ) {
$post_id = get_the_ID();
if ( $feed_type === \'atom\' )
$content = \'something else\';
else
$content = wp_trim_words( $content, 30 );
return $content;
}, 10, 2 );
以上仅仅是一些你可能想做的(奇怪的)事情的一个例子。