Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function oliverio( $query ) {
  2. if ( is_admin() || ! $query->is_main_query() )
  3. return;
  4. if ( $query->is_main_query() && $query->is_category( 'gastronomia' ) ) {
  5. $query->set('posts_per_page', 5);
  6. }
  7. }
  8. add_action( 'pre_get_posts', 'oliverio', 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement