Advertisement
Viper007Bond

Untitled

May 12th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. add_action( 'pre_get_posts', 'raits_change_posts_per_page' );
  4.  
  5. function raits_change_posts_per_page( $query ) {
  6.     // Change is_home() to whatever you want
  7.     // Just make it select just the stuff you want to affect
  8.     if ( $query->is_main_query() && $query->is_home() )
  9.         $query->set( 'posts_per_page', 1 );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement