Advertisement
Guest User

cab

a guest
Jan 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php $paged = get_query_var('paged'); ?>
  2.  
  3. <?php
  4. $categorys = array(3,1,2);
  5. for ($i=0; $i<count($categorys); $i++) :
  6. ?>
  7.  
  8. <?php query_posts( array(
  9. 'post_type' => 'post',
  10. 'posts_per_page' => 28,
  11. 'cat' => $categorys[$i],
  12. 'paged' => $paged
  13. )); ?>
  14.  
  15. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement