Display Post Thumbnails in the Feed
Lots of themes these days make use of post thumbnails or featured images but these aren’t included in your RSS feed by default. To add them in, add the following to your theme’s functions.php file. // show post thumbnails in feeds function diw_post_thumbnail_feeds($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = ‘<div>’ . get_the_post_thumbnail($post->ID) . ‘</div>’ [...]
Tags: Display, Feed, Post Thumbnail, rss, Thumbnail
24.Sep.11
Tips
Comments (0)