conditional if elseif else question
-
I have the following code that allows me to flip between the FEATURE image and an ADSENSE ad and I’d like to also include if an image in the post is used.
So if “image in post” or “has post thumbnail” then show images, otherwise INCLUDED the .php ad.
<?php if( has_post_thumbnail() ) { ?>
<?php } else { ?>
<?php include(‘adsense_singlepost_top_square.php’) ?>
<?php } ?>Anyone know how I can accomplish this?
The topic ‘conditional if elseif else question’ is closed to new replies.