Skip to content

Instantly share code, notes, and snippets.

@craigsimps
Last active August 29, 2015 14:22
Show Gist options
  • Save craigsimps/af35e52028453429aaf6 to your computer and use it in GitHub Desktop.
Save craigsimps/af35e52028453429aaf6 to your computer and use it in GitHub Desktop.
function customize_cpt_archive_query( $query ) {
if ( is_post_type_archive( 'gemstone' ) ) {
$query->set( 'posts_per_page', -1 );
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
return;
}
}
add_action( 'pre_get_posts', 'customize_cpt_archive_query', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment