Created
June 29, 2017 14:07
-
-
Save ckschmieder/f6f2e8f82b142cb6d1ecf647f3c1ebbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- So whenever the theme displays the post thumbnail on a page, I want it to display with this code wrapped around it... --> | |
<?php | |
$caption = get_field( "featured_caption" ); | |
?> | |
<div class="featured-image-wrap"> | |
<div class="featured-image-caption"> | |
<?php if( $caption ) { | |
echo $caption; | |
} ?> | |
</div> | |
<?php if ( has_post_thumbnail() ) : | |
the_post_thumbnail(); | |
endif; ?> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment