srikat

Untitled

Feb 1st, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'be_change_lsu_posts_per_page' );
  2. /**
  3. * Change Posts Per Page for Lower School Update category.
  4. *
  5. * @author Bill Erickson
  6. * @link http://www.billerickson.net/customize-the-wordpress-query/
  7. * @param object $query data
  8. *
  9. */
  10. function be_change_lsu_posts_per_page( $query ) {
  11. if ( $query->is_main_query() && ! is_admin() && is_category( 'lower-school-update' ) ) {
  12. $query->set( 'posts_per_page', '1' );
  13. }
  14. }
Add Comment
Please, Sign In to add comment