Hello,
When I choose the blog posts element with the grid layout, the firsts posts that it show me are the oldest one, and I would like to show the newest ones.
I didn’t see any option to choose the order, and I was looking into the code, but I couldn’t find where to change it.
Thank you
Hey!
Please add following code to the bottom of functions.php
add_filter('avia_post_grid_query','avia_order_by_random');
function avia_order_by_random($query)
{
$query['orderby'] = 'date';
$query['order'] = 'DESC';
return $query;
}
Best regards,
Peter
Thank you ;)
Hey,
Glad it worked. You can also use this plugin:
http://wordpress.org/plugins/post-types-order/
Regards,
Ismael