Skip to content

Instantly share code, notes, and snippets.

@badah
Last active November 4, 2015 12:52
Show Gist options
  • Save badah/ac6b0cfe6636f80973ba to your computer and use it in GitHub Desktop.
Save badah/ac6b0cfe6636f80973ba to your computer and use it in GitHub Desktop.
Wordpress: Change query properties
/*
Change query properties
*/
function badah_change_query( $query ) {
if ( !is_admin() && $query->is_main_query() ) {
if ( $query->is_front_page() ) {
$query->set( 'showposts', 1 ); // whatever
}
}
}
add_action( 'pre_get_posts', 'badah_change_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment