After upgrading to WP3 (with ComicPress as my theme) suddenly my images for the category "comic strip" don't show up. When I look at the source XML, the image tag IS in the feed. The image IS on the server, I checked. (It shows fine on the blog). But in the feed... nothing.
I disabled the feedburner plugin thinking maybe it was that, but no dice. Images work in the blog category just fine. The developer for ComicPress inspected the theme files, and it's not that. So I'm lost.
Any ideas on why it might not be showing? It seems especially odd since the image file is actually there.... here's the feed:
http://www.maroonedcomic.com/feed
Any help is appreciated
I can see images in your feed...
Yes in the blog category, but not in the comic category correct?
Yeah I just checked again, no images in the comic strip category.
Images coming in that category also.
chk this url in firefox
http://www.maroonedcomic.com/category/comic-strip/feed/
BTW your site is looking good.
Huh, I still don't see the comic images even in that feed. This seems wildly inconsistent every since WP upgraded to 3.0. I'm at a loss what to do next.
I'm also not seeing your images, Windows XP, IE7
Which is crazy because the image tag IS IN THE FEED. How can this be and what is the culprit?
This has been resolved, the issue is that the action('the_content_rss', and action('the_excerpt_rss', does not actually work as intended, sure it works for RSS2 feeds, but not the old rss or atom, so the image wasnt displaying properly to only some people and readers that went to grab the image with old methods.
The resolve is changing the actions to action('the_content', and action('the_excerpt' with an if (is_feed()) check to add the comic to the post's content, which of course is used on all of them.
- Phil