Created
September 22, 2017 10:09
-
-
Save domantasg/0e31d45b0b19667480e244be4879a374 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
$movie_box_art = get_post_meta( $post->ID, 'Box Art', TRUE ); | |
if (!empty($movie_box_art)) { ?> | |
<div class="movie-poster-box"> | |
<img src="<?php echo $movie_poster ?>" alt="<?php single_post_title(); ?> "> | |
</div> | |
<? } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment