Skip to content

Instantly share code, notes, and snippets.

@jeremyfelt
Created May 31, 2012 00:04
Show Gist options
  • Save jeremyfelt/2839691 to your computer and use it in GitHub Desktop.
Save jeremyfelt/2839691 to your computer and use it in GitHub Desktop.
pre_get_posts over query_posts
<?php
add_action( 'pre_get_posts', 'my_alter_home_posts' );
function my_alter_home_posts( $query ) {
if ( $query->is_home() && $query->is_main_query() )
$query->set( 'posts_per_page', 3 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment