mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
9 lines
175 B
Text
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;
|
|
}
|
|
);
|