Created
August 21, 2015 08:41
-
-
Save elvinlee/497206fc880ca58ba17c to your computer and use it in GitHub Desktop.
Change the Order of Kiwi Logo Carousel
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
/** | |
* Default is ASC, change to DESC | |
**/ | |
add_action( 'pre_get_posts', 'custom_kiwi_order' ); | |
function custom_kiwi_order( $query ) { | |
if ( is_home() && $query->is_main_query() ) | |
$query->set( 'post_type', 'kwlogos' ); | |
$query->set( 'order' , 'desc' ); | |
return $query; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment