Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. if ( get_post_meta( get_the_ID(), 'portfolio_main_image', false ) ){
  3. $image_array = get_post_meta( get_the_ID(), 'portfolio_main_image', false );
  4. }
  5. if ( $image_array ) {
  6.  
  7. foreach ( $image_array as $image ) {
  8. $thumbimg = wp_get_attachment_image( $image['ID'], 'full');
  9. echo $thumbimg;
  10. }
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement