Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. //свое количество записей в каждом разделе
  3. function custom_posts_per_page($query) {
  4. if (!is_admin()) {
  5. if (is_archive(array('story'))) {
  6. $query->set('posts_per_page', 6);
  7. }//endif
  8. }
  9. }
  10.  
  11. add_action('pre_get_posts', 'custom_posts_per_page');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement