Guest User

Untitled

a guest
Jan 13th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. add_filter('parse_query', 'my_modified_query');
  2.  
  3. function my_modified_query( $q ) {
  4. if (is_home() && is_frontpage()) {
  5. $q->set('posts_per_page', 4);
  6. }
  7. return $q;
  8. }
Add Comment
Please, Sign In to add comment