Skip to content

Instantly share code, notes, and snippets.

@elvinlee
Created August 21, 2015 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elvinlee/497206fc880ca58ba17c to your computer and use it in GitHub Desktop.
Save elvinlee/497206fc880ca58ba17c to your computer and use it in GitHub Desktop.
Change the Order of Kiwi Logo Carousel
/**
* 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