I'm trying to display 2 different values on my wordpress website : skuar.com It should be, after clicking on any thumbnail (center logo)
If there is a field value in ('music') : display
else, display value in ('image') field
It actually dosen't work, is the code good ?
<?php
$music = get_field('music');
$image = get_field('image');
if ($music!=''){ ?>
<iframe width="600" height="166" scrolling="no" class="lightbox" class="frame" id="featherlight" frameborder="no" src="https://w.soundcloud.com/player/?url=<?php the_field('music'); ?>&color=1b1e25&theme_color=1b1e25&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
<?php } else { ?>
<img src="<?php $image ?>" />
<?php endif; ?>
<?php } ?>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('post-thumbnails');
}
?>
Thanks
If
get_field()
is empty, it actually returns false, not an empty string. So your code is always running the iframe because$music
is never an empty string (it's either false or some value you set). Try this: