Hi,
I have a category link integrated into the menu. How can I view posts in this category in reverse order (oldest post first)?
Regards
Morcy
Hi Morcy!
Please take a look here
http://wordpress.stackexchange.com/questions/82795/how-can-i-change-wp-main-archives-loop-to-sort-by-name-or-title
at the second reply, there is a function you can use to customize the loop.
Let us know if you will manage it!
Best regards,
Basilis
Hello!
Thanks for the tip, but the use me not much. I would like to continue sorting the posts by date, only in reverse, chronological order.
Regards
Morcy
Hi Morcy,
Try adding this at the bottom of functions.php:
add_action( 'pre_get_posts', 'my_change_sort_order');
function my_change_sort_order($query){
if(is_category()):
$query->set( 'order', 'ASC' );
endif;
};
Let us know if it helps :)
Best regards,
Nikko
Great! That works, I’m happy.
The Kriesi support is the best.
Thank you very much!
Morcy
Hey Morcy,
Glad we could help :)
Regards,
Nikko