Created
November 9, 2018 21:02
-
-
Save ahaywood/cefabb856dfd92819c5332f35e96a5a2 to your computer and use it in GitHub Desktop.
Display Image and Video
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
<div class="fitvids"> | |
<?php $video = get_field('testimonial_video'); | |
$image = get_field('testimonial_image'); ?> | |
<?php if ($image && $video) { // image click to video ?> | |
<a href="#" class="js-video"> | |
<img src="<?php echo $image; ?>" data-video="<?php echo $video; ?>"> | |
</a> | |
<?php } else if ($video) { // video only ?> | |
<iframe src="<?php echo $video; ?>"></iframe> | |
<?php } else if ($image) { // image only ?> | |
<img src="<?php echo $image; ?>"> | |
<?php } else { // default image ?> | |
<?php } ?> | |
</div> |