Code-Snippets-Functions/Execute a function on a child site/The Events Calendar/sort-events-alphabetically.txt
2024-04-30 13:22:33 -06:00

9 lines
175 B
Text

add_filter(
'tribe_events_views_v2_view_list_repository_args',
function ( $args ) {
$args['orderby'] = 'title';
$args['order'] = 'ASC';
return $args;
}
);