Last active
December 4, 2015 09:12
-
-
Save leonkorteweg/bab0aaad67285dba2929 to your computer and use it in GitHub Desktop.
Sort WordPress loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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