Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save reediredale/c0ec20b3cde6866d9fe2 to your computer and use it in GitHub Desktop.
Save reediredale/c0ec20b3cde6866d9fe2 to your computer and use it in GitHub Desktop.
<?php
$myname = get_post_meta($post->ID, 'header_image', true);
if ( $myname ) { ?>
<img class="feature" src="<?php the_field('header_image'); ?>">
<?php }
else {
echo '';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment