Skip to content

Instantly share code, notes, and snippets.

@ellenbo
Created February 13, 2015 23:07
Show Gist options
  • Save ellenbo/eb646b23fe7a83e3cf8b to your computer and use it in GitHub Desktop.
Save ellenbo/eb646b23fe7a83e3cf8b to your computer and use it in GitHub Desktop.
Set Number of Posts per Page
<?php
function five_posts_on_homepage( $query ) {
$query->set( 'posts_per_page', 5 );
}
add_action( 'pre_get_posts', 'five_posts_on_homepage' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment