我可以将帖子特色图片添加到特定的RSS提要中吗?

时间:2019-08-27 作者:Kenan Philips

我当前正在使用以下代码:

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\');
这确实有效,但我正在运行一些MailChimp RSS电子邮件活动,我需要一个RSS提要来显示特色图像(文章提要),还有一个我不想显示特色图像的RSS提要。

我的想法是按类别来做,可能吗?

如果需要更多澄清,请告诉我!

谢谢

1 个回复
最合适的回答,由SO网友:Mike Baxter 整理而成

WP初学者有一篇很好的文章" How to Create Custom RSS Feeds in WordPress" 这从可管理的角度解决了这一问题。

它们包括创建自定义提要,以及使用主题模板自定义提要发布的内容。

看一看。

相关推荐

使用page.php而不是page-{slug}.php列出页面

我为特定的Slug制作了一个视图模板第1-220页使用第页。php联系人使用页面联系人。php服务使用页面服务。php现在,我想在一个包含页面概述的“概述”页面上列出页面及其模板。php模板。我试过这个:<?php $args = array( \'post_type\' => \'page\', /* or just \'post\' */ \'posts_per_page\' => -1, ); $the_query = new WP_Qu