SergeyBiryukov

Custom Posts Per Page

Nov 4th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function custom_posts_per_page( $query ) {
  2.     if ( ! is_admin() && $query->is_main_query() )
  3.         $query->set( 'posts_per_page', 5 );
  4. }
  5. add_action( 'pre_get_posts', 'custom_posts_per_page' );
Add Comment
Please, Sign In to add comment