Portfolio entries are currently displayed/sorted by date newest first. How can I sort them by name from A to Z?
Cheers
Michael
Hi Michael!
You can add this on functions.php:
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'title';
$query['order'] = 'ASC';
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
Remove browser cache then reload the page.
Cheers!
Ismael
Awesome, Ismael. Works like a charm.
Thanx
Michael