See http://www.freewheelintravel.org/my-journey
I’m using this shortcode –
[av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='4' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='12' offset='0' paginate='no']
I’d like to list by unique category (Caregivers and Companions, Part I and II have the same category for example) and I’d like to sort by oldest to newest instead of newest to oldest. I want to have the page show posts from one category only, and sorted either oldest to newest, or alphabetically.
Hey DJQuad!
Thank you for using the theme!
I’m sorry but it’s not possible to sort the blog grid by category but you can sort them by date published. Add this on functions.php:
add_filter('avia_post_slide_query','avia_change_grid_order', 10, 2);
function avia_change_grid_order($query, $params)
{
$query['orderby'] = 'date';
$query['order'] = 'DESC';
return $query;
}
Best regards,
Ismael