I’m not sure how it’s affecting objects in the pages of posts… the code simply attaches to the RSS hooks, then appends the IMG code with it’s own CSS formatting to the front of the content normally being generated.
Care to send me the feed URL so that I can debug further?
It’s impractical for me to turn on because of the negative impact that it has, but you can see what it does quite clearly here:
http://www.diffchecker.com/vukl2dgv
I see, it’s being added to the social sharing icons with the title?
It should only be adding that image code to your RSS feed:
http://pixeldynamo.staging.wpengine.com/feed/
and the sharing code should not be using the feed content to produce the title code… the normal WordPress loop would do that just fine.
It’s a poorly coded plugin or theme somehow using one of these two filter hooks to get the post titles:
add_filter(‘the_excerpt_rss’, ‘featured_images_in_rss’, 1000, 1);
add_filter(‘the_content_feed’, ‘featured_images_in_rss’, 1000, 1);
and the function above attached to those two hooks simply added the featured image SRC and CSS before the content being returned with the normal RSS feed output.
I don’t see a way to resolve it on my end… it’s doing it wrong I think.