Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <section class="section">
  2. <div class="container">
  3. <h3 class="text-center"><?php the_title(); ?></h3>
  4. <?php if (have_posts()): while (have_posts()) : the_post(); ?>
  5.  
  6. <!-- article -->
  7. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  8. <?php the_content(); ?>
  9.  
  10. </article>
  11. <!-- /article -->
  12.  
  13. <?php endwhile; ?>
  14.  
  15. <?php else: ?>
  16.  
  17. <!-- article -->
  18. <article>
  19.  
  20. <h2><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h2>
  21.  
  22. </article>
  23. <!-- /article -->
  24.  
  25. <?php endif; ?>
  26. </div>
  27. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement