• Resolved senojeel

    (@senojeel)


    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

    (@mekku)

    Hi @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) to add your custom filter.

    • This reply was modified 5 years, 10 months ago by Miguel Muscat.
    • This reply was modified 5 years, 10 months ago by Miguel Muscat.
Viewing 1 replies (of 1 total)
  • The topic ‘Item Ordering’ is closed to new replies.