WordPress Hack:在RSS Feed中显示缩略图
2010年6月24日
33 条评论
将以下代码复制粘贴到functions.php,你的WordPress博客rss feed 中将显示你博客中图片的缩略图。
- function diw_post_thumbnail_feeds($content) {
- global $post;
- if(has_post_thumbnail($post->ID)) {
- $content = '
- <div>' . get_the_post_thumbnail($post->ID) . '</div>
- ' . $content;
- }
- return $content;
- }
- add_filter('the_excerpt_rss', 'diw_post_thumbnail_feeds');
- add_filter('the_content_feed', 'diw_post_thumbnail_feeds');

最新评论