Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="container-fluid" id="post-content">
  4. <div class="row">
  5. <?php if( have_posts() ): while( have_posts() ): the_post();
  6. $attached_images = get_post_gallery_images($post->ID);
  7. ?>
  8. <div class="col-sm-12 col-md-6 col-lg-4 shadow" id="single-post-text">
  9. <h2 class=""><?php the_title(); ?></h2>
  10. <?php
  11. add_filter('the_content', 'remove_shortcode_from');
  12. the_content();
  13. remove_filter('the_content', 'remove_shortcode_from');
  14. ?>
  15. </div>
  16. <?php if($attached_images): ?>
  17. <div class="col-sm-12 col-md-6 col-lg-6" id="single-post-img">
  18. <?php foreach($attached_images as $image): ?>
  19. <img class="img-fluid w-100 show" src="<?php echo $image; ?>" alt="" title="" id="post-image" />
  20. <?php endforeach; ?>
  21. </div>
  22. <?php endif; ?>
  23.  
  24. <?php endwhile; ?>
  25. <?php endif; wp_reset_postdata(); ?>
  26. </div>
  27. </div>
  28.  
  29. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement