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.