Cara termudah untuk melakukan ini adalah dengan menggunakan pengait ( pre_get_posts
hook) untuk mengubah urutan. Tetapi Anda harus memeriksa bahwa kueri itu adalah salah satu yang ingin Anda ubah urutannya! ( is_archive()
atau is_post_type_archive()
harus cukup.)
Misalnya, letakkan yang berikut ini di functions.php tema Anda ...
add_action( 'pre_get_posts', 'my_change_sort_order');
function my_change_sort_order($query){
if(is_archive()):
//If you wanted it for the archive of a custom post type use: is_post_type_archive( $post_type )
//Set the order ASC or DESC
$query->set( 'order', 'ASC' );
//Set the orderby
$query->set( 'orderby', 'title' );
endif;
};