将特色图像添加到ATOM提要

时间:2018-05-16 作者:FakeHeal

我正在使用我自己的博客主题。在我的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/).

1 个回复
SO网友:FakeHeal

实际上我应该用atom_entry()

因此,以下代码将把您的帖子缩略图添加到atom提要中:

function featuredImageToRSS()
{
    global $post;
    $content = \'<image>\';
    if (has_post_thumbnail($post->ID)) {
        $content .= get_the_post_thumbnail_url($post->ID);
    }
    $content .= \'</image>\';
    echo $content;
}


add_action(\'atom_entry\', \'featuredImageToRSS\');

结束

相关推荐

My RSS feed is not working

我在wordpress 4.1上运行我的网站,但我的网站提要不起作用。提要页面显示此错误消息。(此页包含以下错误:第105列第399行出错:输入不正确UTF-8,请指示编码!字节:0x1F 0x6F 0x72 0x64以下是第一个错误之前的页面呈现。)我尝试使用不同的主题,但仍然显示出相同的错误。你知道我该怎么解决这个问题吗。以下是源地址:http://feeds.feedburner.com/WeBuildDesignhttp://webuilddesign.com/feed谢谢