dunjavasic
10/5/2017 - 1:49 PM

Add this code to add ACF field to page/post. Be sure to check screen options in top menu on wordpress dashboard

Add this code to add ACF field to page/post. Be sure to check screen options in top menu on wordpress dashboard

<?php
// vars	
$selected = get_field('product_select');
// check
if( $selected && in_array('opt-1', $selected) ): ?>
<img src="http://localhost/cpk/wp-content/uploads/2017/05/recycle-b.png"/>
<?php endif; ?>

<?php if( $selected && in_array('opt-2', $selected) ): ?>
<img src="http://localhost/cpk/wp-content/uploads/2017/05/flat-b.png"/>
<?php endif; ?>