Skip to content

Instantly share code, notes, and snippets.

@adapicom
Created October 13, 2012 16:58
Show Gist options
  • Save adapicom/3885341 to your computer and use it in GitHub Desktop.
Save adapicom/3885341 to your computer and use it in GitHub Desktop.
Print Custom Field IF Custom Field Exists
<?php if(get_post_meta($post->ID, 'single-bottom-ad', true)): ?>
<div id="single-bottom-ad">
<?php echo get_post_meta($post->ID, 'single-bottom-ad', true); ?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment