最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Can I add the post featured image to a specific RSS feed?

programmeradmin0浏览0评论

I'm currently using the following code:

function featuredtoRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
        $content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
    }
    return $content;
}
add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');

Which does work, but I'm running a few MailChimp RSS emails campaigns and am needing one RSS feed to show the featured image (articles feed) and one where I don't want to show the featured image.

My thought is to do this by category, possibly?

Let me know if more clarification is needed!

Thanks!

I'm currently using the following code:

function featuredtoRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
        $content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
    }
    return $content;
}
add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');

Which does work, but I'm running a few MailChimp RSS emails campaigns and am needing one RSS feed to show the featured image (articles feed) and one where I don't want to show the featured image.

My thought is to do this by category, possibly?

Let me know if more clarification is needed!

Thanks!

Share Improve this question edited Aug 27, 2019 at 15:21 Kenan Philips asked Aug 27, 2019 at 15:16 Kenan PhilipsKenan Philips 133 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

WPBeginner has a nice article " How to Create Custom RSS Feeds in WordPress" that addresses this from a manageable perspective.

They cover creating custom feeds, and using theme templates to customize what your feeds publish.

Take a look.

发布评论

评论列表(0)

  1. 暂无评论