Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // Find this code in both the index.php and single.php files:
  2.  
  3. <img src="<?php echo get_post_meta($post->ID, "post_image_value", $single = true); ?>" alt="<?php the_title(); ?>" width="250" />
  4.  
  5. // Change it to this:
  6.  
  7. <?php if(get_post_meta($post->ID, "post_image_value", $single = true) != "") { ?>
  8. <img src="<?php echo get_post_meta($post->ID, "post_image_value", $single = true); ?>" alt="<?php the_title(); ?>" width="250" />
  9. <?php } ?>
Add Comment
Please, Sign In to add comment