Guest User

Untitled

a guest
Apr 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function wp_posts_query( $query ){
  2. if( ! is_admin()
  3. && $query->is_post_type_archive( 'casestudies' )
  4. && $query->is_main_query() ){
  5. $query->set( 'posts_per_page', 100 );
  6. }
  7. }
  8. add_action( 'pre_get_posts', 'wp_posts_query' );
Add Comment
Please, Sign In to add comment