Guest User

Untitled

a guest
Apr 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <div id="content" class="content" role="main">
  2.  
  3. <?php if( have_posts() ){ $args = array('post_type' => 'files', 'posts_per_archive_page' => 2); query_posts( $args );?>
  4. <ul class="files-list">
  5. <?php while( have_posts() ){ the_post(); ?>
  6. <li>
  7. Тут вывод произвольных полей и верстка.
  8. </li>
  9. <?php } /* конец while */ ?>
  10. </ul>
  11.  
  12. <div class="navigation">
  13. <?php the_posts_pagination(); ?>
  14. </div>
  15.  
  16. <?php
  17. wp_reset_query(); } // конец if
  18. else
  19. echo "<h4>Записей нет.</h4>"; ?>
Add Comment
Please, Sign In to add comment