Alter post order on taxonomy template
I’ve assumed that since the posts have already been returned then I should use ‘query_posts’ to alter the order of the posts. That assumption is wrong. You should pretty much never use query_posts. Use a filter on pre_get_posts. function pregp_wpse_108235( $qry ) { if ( $qry->is_main_query() && $qry->is_tax() ) { $qry->set( ‘order’, ‘ASC’ ); } … Read more