Tagged: portfolio grid
Hi Love this as always. I was wondering if there is a way to display the portfolio grid in alphabetical order?
Thanks
Hey TheodoraPhotography!
Thank you for using the theme.
Yes, that is possible. Use this on functions.php:
add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
function avf_custom_post_grid_query ( $query ) {
$query['orderby'] = 'title';
$query['order'] = 'DESC';
return $query;
}
Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters`
Regards,
Ismael
Das half mir auch gut, danke Ismael.