|
這個修改要搭配 thumbnail 特色圖片 功能,每篇文章有設定 "特色圖片" 才會在 RSS 顯示。
修改你目前使用中的 Theme 佈景主題裡面的 functions.php 檔案
加入:
- /** RSS thumbnail */
- function rss_post_thumbnail($content) {
- global $post;
- if(has_post_thumbnail($post->ID)) {
- $content = '<p>' . get_the_post_thumbnail($post->ID) .
- '</p>' . get_the_content();
- }
- return $content;
- }
- add_filter('the_excerpt_rss', 'rss_post_thumbnail');
- add_filter('the_content_feed', 'rss_post_thumbnail');
- /** RSS thumbnail END */
複製代碼
存檔後應該就可以,有 cache 的話記得刪 cache 、更新一下...
|
|