Skip to content

Instantly share code, notes, and snippets.

@NatalieMac
Last active May 21, 2017 08:52
Show Gist options
  • Save NatalieMac/9440103 to your computer and use it in GitHub Desktop.
Save NatalieMac/9440103 to your computer and use it in GitHub Desktop.
<?php
function alphaindex_queries( $query ) {
/* Sort songs alpha */
if ( ! is_admin() && ( is_post_type_archive( 'song' ) || is_tax( 'alpha' ) ) && $query->is_main_query() ) {
$query->set('orderby', 'name');
$query->set('order', 'ASC');
}
}
add_action( 'pre_get_posts', 'alphaindex_queries' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment