Title: Item Ordering
Last modified: May 4, 2019

---

# Item Ordering

 *  Resolved [senojeel](https://wordpress.org/support/users/senojeel/)
 * (@senojeel)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/item-ordering/)
 * Is there a way to change what order the items are displayed? I think it is probably
   showing by create date now, but I would like to show them alpha by title.
 * Thanks.

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [Miguel Muscat](https://wordpress.org/support/users/mekku/)
 * (@mekku)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/item-ordering/#post-11499728)
 * Hi [@senojeel](https://wordpress.org/support/users/senojeel/)
 * Yes, the items are displayed according to there date, in descending order.
    Currently
   there is no way to change this. We don’t usually get requests for sorting alphabetically.
   For now, you can use this filter to achieve this:
 *     ```
       add_filter('wpra/templates/feeds/feed_item_collection', 'wpra_sort_feed_items_alpha');
       function wpra_sort_feed_items_alpha($collection) {
           return $collection->filter([
               'order_by' => 'title',
               'order'    => 'ASC',
           ]);
       }
       ```
   
 * You can paste this filter code into your theme’s functions.php file, or use a
   3rd party plugin (such as [Add Shortcodes Actions And Filters](https://wordpress.org/plugins/add-actions-and-filters/))
   to add your custom filter.
    -  This reply was modified 7 years, 1 month ago by [Miguel Muscat](https://wordpress.org/support/users/mekku/).
    -  This reply was modified 7 years, 1 month ago by [Miguel Muscat](https://wordpress.org/support/users/mekku/).

Viewing 1 replies (of 1 total)

The topic ‘Item Ordering’ is closed to new replies.

 * ![](https://ps.w.org/wp-rss-aggregator/assets/icon-256x256.gif?rev=3157090)
 * [RSS Aggregator - RSS Import, News Feeds, Feed to Post, and Autoblogging](https://wordpress.org/plugins/wp-rss-aggregator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-rss-aggregator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-rss-aggregator/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-rss-aggregator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-rss-aggregator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-rss-aggregator/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Miguel Muscat](https://wordpress.org/support/users/mekku/)
 * Last activity: [7 years, 1 month ago](https://wordpress.org/support/topic/item-ordering/#post-11499728)
 * Status: resolved