Advertisement
Guest User

Untitled

a guest
Oct 18th, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php
  2. $oneimg = get_post_meta($post->ID, 'Oneimg', true);
  3. $twoimg = get_post_meta($post->ID, 'Twoimg', true);
  4. $threeimg = get_post_meta($post->ID, 'Threeimg', true);
  5.  
  6. if($oneimg != '' || $twoimg != '' || $threeimg != '') {
  7. // there is at least one image
  8. ?>
  9. <h1>Check this Cool Photos of <?php the_title(); ?></h1>
  10.  
  11.  
  12. <?php if($oneimg != '') : ?>
  13. <!-- code for oneimg here -->
  14. <img src="<?php echo get_post_meta($post->ID, 'Oneimg', true); ?>" class="trailer-gallery-img" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" />
  15. <?php endif; ?>
  16.  
  17. <?php if($twoimg != '') : ?>
  18. <!-- code for $twoimg here-->
  19. <img src="<?php echo get_post_meta($post->ID, 'Twoimg', true); ?>" class="trailer-gallery-img" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" />
  20. <?php endif; ?>
  21.  
  22. <?php if($threeimg != '') : ?>
  23. <!-- code for $threeimg here -->
  24. <img src="<?php echo get_post_meta($post->ID, 'Threeimg', true); ?>" class="trailer-gallery-img" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" />
  25. <?php endif; ?>
  26. <?php } ?>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement