Skip to content

Instantly share code, notes, and snippets.

@larodiel
Created September 8, 2017 13:47
Show Gist options
  • Save larodiel/a3988e57ad44d4a9e04d7ab0dc0f230b to your computer and use it in GitHub Desktop.
Save larodiel/a3988e57ad44d4a9e04d7ab0dc0f230b to your computer and use it in GitHub Desktop.
wordpress home query change
function home_query( $query ){
if( $query->is_home()
&& $query->is_main_query() ){
$query->set( 'posts_per_page', 5 );
}
}
add_action( 'pre_get_posts', 'home_query', 25 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment