Guest User

Untitled

a guest
Oct 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php $get_the_image_as_array = get_the_image( array( 'image_scan' => true, 'format' => 'array' ) ); ?>
  2.  
  3. <?php if ($get_the_image_as_array[url]) { ?>
  4.  
  5. <div class="thumbnail-wrap">
  6.  
  7. <?php if ( function_exists( 'get_the_image' ) ) { ?>
  8.  
  9. <img src="<?php echo $get_the_image_as_array[url]; ?>">
  10.  
  11. <?php } ?>
  12.  
  13. </div>
  14.  
  15. <?php } ?>
Add Comment
Please, Sign In to add comment