如何在 WordPress RSS Feed 中顯示精選圖片

儘管有些人可能認為 RSS 已經退流行了,但許多其他服務仍在使用它們,像我的部落格,至目前還是使用 Feedly 還是有一些死忠的讀者來閱讀 RSS 文章。

安裝 Code Snippets 外掛,創建一個新的代碼段:

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');

發佈留言

Your Mastodon Instance