Skip to content

Instantly share code, notes, and snippets.

@matheusgimenez
Last active August 29, 2015 14:08
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 matheusgimenez/64f07624dedd78daad3e to your computer and use it in GitHub Desktop.
Save matheusgimenez/64f07624dedd78daad3e to your computer and use it in GitHub Desktop.
function posts_in_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'posts_per_page', '1' );
}
}
add_action( 'pre_get_posts', 'posts_in_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment