Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if(!function_exists('avia_change_posts_query'))
- {
- function avia_change_posts_query($query, $params)
- {
- if(!empty($query['orderby']) && $query['orderby'] == 'post__in')
- {
- $query['order'] = 'ASC';
- $query['orderby'] = 'title';
- }
- return $query;
- }
- add_filter('avia_masonry_entries_query', 'avia_change_posts_query', 10, 2);
- }
Advertisement
Add Comment
Please, Sign In to add comment