Guest User

Untitled

a guest
Dec 11th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. $mainquery = new WP_Query(array(
  3. 'post_type' => 'smi',
  4. 'order' => 'DESC',
  5. 'posts_per_page' => -1
  6. ));
  7. if ( $mainquery->have_posts() ) {
  8. while ( $mainquery->have_posts() ) {
  9. $mainquery->the_post();
  10. ?>
  11.  
  12. Блаблабла
  13.  
  14. <?php }
  15. } else {
  16. // no posts found
  17. }
  18. /* Restore original Post Data */
  19. wp_reset_postdata();
  20. ?>
Add Comment
Please, Sign In to add comment