Guest User

Untitled

a guest
Nov 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  2.  
  3. <div class="post">
  4. <h2><?php the_title(); ?></h2>
  5.  
  6. <p><?php the_time('F jS, Y'); ?> by <?php the_author(); ?></p>
  7. <div class="blog-content">
  8. <?php the_excerpt(); ?>
  9. </div>
  10. </div>
  11. <?php endwhile; else : ?>
  12. <p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
  13.  
  14. <div id="myModal" class="modal fade" role="dialog">
  15. <div class="modal-dialog">
  16.  
  17. <div class="modal-content">
  18. <div class="modal-header">
  19. <button type="button" class="close" data-dismiss="modal">&times;</button>
  20. <h4 class="modal-title">Modal Header</h4>
  21. </div>
  22. <div class="modal-body">
  23.  
  24. <!-- the_content() in here-->
  25.  
  26. </div>
  27. <div class="modal-footer">
  28. <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
  29. </div>
  30. </div>
  31.  
  32. </div>
  33. </div>
Add Comment
Please, Sign In to add comment