如何编辑我的默认RSS提要?

时间:2016-10-24 作者:user105568

我想编辑一些输出,例如内容或描述字段。

我是否需要制作一个自定义rss提要来更改一件事?

1 个回复
SO网友:TheDeadMedic

如果要更改提要中显示的内容,请使用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 );
以上仅仅是一些你可能想做的(奇怪的)事情的一个例子。

相关推荐

显示RSS提要中自定义帖子中的自定义域

我已经为此挣扎了几天,但仍然不知道该怎么做。我想做的是在RSS提要中添加一个自定义表字段,所以我使用代码片段来解决这个问题。下面是我的nw,但我相信我已经尝试了所有可能的组合,我可以在WP site.function featuredtoRSS($content) { if ( has_post_thumbnail( $post->ID ) && get_post_type() == \'product\'){ global $wpdb;