Skip to content

Instantly share code, notes, and snippets.

@CodeProKid
Created September 9, 2018 21:01
Show Gist options
  • Save CodeProKid/f6ac1deb8e48a648f4085ca8aacf71ca to your computer and use it in GitHub Desktop.
Save CodeProKid/f6ac1deb8e48a648f4085ca8aacf71ca to your computer and use it in GitHub Desktop.
<?php
add_action( 'pre_get_posts', 'wphc_modify_orderby_books' );
function wphc_modify_orderby_books( $wp_query ) {
if ( false === $wp_query->is_main_query() || false === $wp_query->is_post_type_archive( 'books' ) {
return;
}
$wp_query->set( 'orderby', 'title' );
$wp_query->set( 'order', 'asc' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment