ben-g
8/24/2017 - 5:08 PM

ACF code to display an image with an embedded link, followed by a text field

ACF code to display an image with an embedded link, followed by a text field

<!-- Loading an image to two pages, and then loadign a different image with a different link to a third page.  -->

<!--Acreditation Logo -->
		<div style="text-align:center;">
				<?php if(is_single(array(1905, 1626)) ) : ?>
					<a href="http://www.affordablecolleges.com/rankings/affordable-online-bachelors-degrees-communications/"><img src="<?php the_field('callout'); ?>" /></a>
			 <?php elseif (is_single(1671) ) : ?>
			 	<a href="http://www.thebestcolleges.org/top-online-masters-in-healthcare-management/"><img src="<?php the_field('callout'); ?>" /></a>
				<?php endif; ?>
		</div><!-- end accred logo section -->
		<div style="text-align:center;"><!--Acreditation Text -->
				<?php if( get_field('callout_text') ): ?>
					<span style="font-size:larger;"><?php the_field('callout_text'); ?></span>
				<?php endif; ?>
		</div><!-- end accred text section -->