Order post by year DESC and month ASC
I have a worpresss 4.0.12 website; i created a custom template category-$id.php in which I have to show post ordering them by Year DESC and by month ASC (or a custom field ASC), the result should be something like this:
2017
- Post 10-01-2017
- Post 25-01-2017
- Post 05-03-2017
- Post 06-12-2017
2016
- Post 10-01-2016
- Post 05-03-2016
- Post 06-12-2016
2015 [...]
How can I do? I Tried width query_posts($args) but I can't order by a second field
Topic order query-posts query posts customization Wordpress
Category Web