Skip to content

Instantly share code, notes, and snippets.

@leonkorteweg
Last active December 4, 2015 09:12
Show Gist options
  • Save leonkorteweg/bab0aaad67285dba2929 to your computer and use it in GitHub Desktop.
Save leonkorteweg/bab0aaad67285dba2929 to your computer and use it in GitHub Desktop.
Sort WordPress loop
<?php
function wiki_agency_sort( $query ) {
if ( $query->is_post_type_archive( 'reisbureaus' ) && $query->is_main_query() ) {
$query->set( 'orderby', array('title' => 'ASC') );
}
}
add_action( 'pre_get_posts', 'wiki_agency_sort' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment