Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <div id="myModal38" class="modal fade" tabindex="-1">
  2. <?php $args1 = array(
  3. 'post_type' => 'post',
  4. 'category_name' => 'modal',
  5. 'posts_per_page' => '1',
  6. );
  7. $modalPost = new WP_Query( $args1 );
  8. if( $modalPost->have_posts() ) :
  9. ?>
  10. <div class="modal-dialog">
  11. <?php while ( $modalPost->have_posts() ) : $modalPost->the_post(); ?>
  12. <div class="modal-content">
  13. <div class="modal-header">
  14. <button class="close" type="button" data-dismiss="modal">×</button>
  15. <h4 class="modal-title"><?php the_title(); ?></h4>
  16. </div>
  17. <div class="modal-body">
  18. <?php the_post_thumbnail(); ?>
  19. <?php the_content(); ?>
  20. <?php endwhile; ?>
  21. </div>
  22. <?php endif; ?>
  23. <?php wp_reset_postdata(); ?>
  24. </div><!-- /.modal-content -->
  25. </div><!-- /.modal-dialog -->
  26. </div><!-- /.modal -->
  27. <!-- Modal -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement