我当前正在使用以下代码:
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提要。
我的想法是按类别来做,可能吗?
如果需要更多澄清,请告诉我!
谢谢