Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Created January 3, 2015 15:09
Show Gist options
  • Select an option

  • Save mindctrl/78f215742ff307085ac9 to your computer and use it in GitHub Desktop.

Select an option

Save mindctrl/78f215742ff307085ac9 to your computer and use it in GitHub Desktop.
Easy Digital Downloads - sort category and tag archives by title
function jp_sort_download_archives( $query ) {
if ( is_tax( array( 'download_category', 'download_tag' ) ) && $query->is_main_query() ):
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
endif;
}
add_action( 'pre_get_posts', 'jp_sort_download_archives' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment