get_the_post_thumbnail() doesn’t taking style attribute
get_the_post_thumbnail attribute array doesn’t know STYLE , the fields that are available for you to use are: src class alt title so just use the class and define you class to it: $attr = array( ‘title’ => get_the_title(), ‘alt’ => get_the_title(), ‘class’ => ‘rss_thumb’ ); $thumb = get_the_post_thumbnail($post->ID, ‘large-thumb’, $attr); and then define the style … Read more