Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created November 18, 2020 02:32
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 braddalton/78940a5bf547f5f19022ea6f8ea97af3 to your computer and use it in GitHub Desktop.
Save braddalton/78940a5bf547f5f19022ea6f8ea97af3 to your computer and use it in GitHub Desktop.
Set Posts Per Page On Home Page
add_action( 'pre_get_posts', 'posts_per_page_home' );
function posts_per_page_home($query) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'posts_per_page', '1' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment