Tagged Questions
2
votes
1answer
104 views
fetch_feed: retrieve entries in the appearing order, not chronologically
I'm using WP function fetch_feed to retrieve a feed and display its items.
<?php
/* include the required file */ include_once(ABSPATH . WPINC . '/feed.php');
/* specify the source ...
0
votes
1answer
158 views
Where does WordPress default SimplePie save cache data?
Where does WordPress default SimplePie save cache data? I could only find relevant info about cache durations but not the location. SimplePie has a method called set_cache_location() but I cannot find ...
0
votes
3answers
364 views
Passing feed URLs with “&” to fetch_feed()?
How do I pass feed URLs with & in the URL to fetch_feed()?
The feed is not parsed correctly if there is a & in the feed URL. Actually it works in the example I gave, but now I'm populating ...