RSS Feed Shows NULL When Asking For Thumbnail

I don’t remember WP feeds to have any care for thumbnails feature. There is some handling for enclosure meta (seems dusty, don’t even remember what that is), but from quick test it seems to ignore thumbnails. Why do you expect exactly for thumbnails to just appear in feed? Unless I am missing something, it seems … Read more

Passing feed URLs with “&” to fetch_feed()?

Further to my comment above, I think it is probably to do with the & being converted into & or &. I had this problem and ended up solving it by running the URL though wp_specialchars_decode before passing it to fetch_feed. I’d suggest you try this (although so much time has passed that I’m really … Read more

Unable to display favicon using get_favicon()?

You can’t ( and shouldn’t ) have php in your css files, css should be static and unchanging. If you need to generate dynamic css, you can put it inline in the header, or have your theme add a url via wordpress from which to generate the css stylesheet dynamically. add_action(‘wp_head’,createfunction(“”,”echo ‘<style>.rss a { background-image: … Read more

Custom query AFTER rss fetch_feed not working

The error seems to be connected to the rss url itself, if I use ‘http://seko.se/feed.rss?rssId=97‘ I can’t create new loops beneath it but if I use another url such as ‘http://www.wpbeginner.com/feed/‘ It works. My original feed works just fine in other readers so I have no idea why it does not work in wordpress.