我正在使用我自己的博客主题。在我的functions.php
文件I添加了一个函数:
function featuredImageToRSS($content)
{
global $post;
if (has_post_thumbnail($post->ID)) {
$content = \'<image>\' . get_the_post_thumbnail_url($post->ID) . \'</image>\' . $content;
}
return $content;
}
并使用以下过滤器将其应用于提要:
add_filter(\'the_excerpt_rss\', \'featuredImageToRSS\');
add_filter(\'the_content_feed\', \'featuredImageToRSS\');
但是,这些在atom提要中没有调用(
http://example.com/feed/atom/
).