Change post order
-
Hi
I am trying to change the post order to oldest posts first using the following code:
function change_posts_order( $query ) { if ( $query-is_home() && $query-is_main_query() ) { $query-set( 'orderby', 'date' ); $query-set( 'order', 'DESC' ); } } add_action( 'pre_get_posts', ' change_posts_order ' );
It doesn’t change anything. I am also wanting to change the order for certain categories only.
Any ideas please?
Thanks
Rich
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Change post order’ is closed to new replies.