Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Created November 9, 2018 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahaywood/cefabb856dfd92819c5332f35e96a5a2 to your computer and use it in GitHub Desktop.
Save ahaywood/cefabb856dfd92819c5332f35e96a5a2 to your computer and use it in GitHub Desktop.
Display Image and Video
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment