↧
Answer by Cameron Hurd for Reversing sort order of ingested RSS feed in PHP
Try the appropriately named array_reverse function!<?php if(function_exists('fetch_feed')) { include_once(ABSPATH . WPINC . '/feed.php'); // include the required file $feed =...
View ArticleReversing sort order of ingested RSS feed in PHP
I have a site where I am 'pulling' local events from a secondary website RSS feed. I have this working however the feed is displaying in reverse order with the local events dated later (i.e. at the end...
View Article