Hello, how are you doing?
I am using the Enfold theme and I need to change the order of the items in my portfolio. The reason I need to do this is because on the homepage I have a gallery displaying some items and it always displays the last items in the list, which are not the ones I need to have on this “featured” section.
How can I do this?
Thank you very much!
Hey lanu39!
Please add this on functions.php:
function custom_post_grid_query( $query, $params ) {
$query['orderby'] = 'date';
$query['order'] = 'DESC';
return $query;
}
add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Cheers!
Ismael