Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <?php if (!have_posts()) : ?>
  2. <div class="alert alert-warning">
  3. <?php _e('Sorry, no results were found.', 'roots'); ?>
  4. </div>
  5. <?php get_search_form(); ?>
  6. <?php endif; ?>
  7.  
  8. <div class="row pagecontent">
  9. <div class="container">
  10. <?php while (have_posts())?>
  11. <div class="col-sm-3">
  12. <?php get_template_part('templates/members', get_post_format()); ?>
  13. </div>
  14.  
  15. <?php endwhile; ?>
  16.  
  17. <?php if ($wp_query->max_num_pages > 1) : ?>
  18. </div>
  19. </div>
  20.  
  21. <div class="container">
  22. <div class="col-lg-12">
  23. <nav class="post-nav">
  24. <ul class="pager">
  25. <li class="next"><?php next_posts_link(__('Next Page &rarr;', 'roots')); ?></li>
  26. <li class="previous"><?php previous_posts_link(__('&larr; Previous Page', 'roots')); ?></li>
  27. </ul>
  28. </nav>
  29. </div>
  30. </div>
  31.  
  32.  
  33. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement