↧
Answer by StephanieQ for PHP not parsing wordpress rss feed
I know this is an old question but I came across it trying to fix my own WordPress RSS feed issue. In my case I was missing the PHP XML extension. So I ranapt-get install php7.0-xml (I'm running PHP...
View ArticleAnswer by conrad10781 for PHP not parsing wordpress rss feed
Try changing$rss->load('http:/gearmunk.com/blog/feed/');To the following ( note the extra / )$rss->load('http://gearmunk.com/blog/feed/');Code appeared to run as expected with that change.
View ArticlePHP not parsing wordpress rss feed
I have read about a dozen posts on this topic here on SO and all of them refer to the whitespace issue, which I don't have, and feed validator agrees my feed is okay...
View Article