RSS feed on sidebar using HTML code
-
Can I show RSS feed (thumbnails) on my sidebar using HTML code?
I don’t want to use Plugin. I tried with RSS widget but there is no images on posts.Also with this php code on functions.php file
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’);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘RSS feed on sidebar using HTML code’ is closed to new replies.