Skip to content

Instantly share code, notes, and snippets.

@arioch1984
Created October 14, 2014 13:20
Show Gist options
  • Save arioch1984/8f60e887af5b0110341f to your computer and use it in GitHub Desktop.
Save arioch1984/8f60e887af5b0110341f to your computer and use it in GitHub Desktop.
Filter posts per page
<?php
function my_custom_posts_per_page($query){
$query->query_vars['posts_per_page'] = 3;
}
add_filter( 'pre_get_posts', 'my_custom_posts_per_page' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment