by Carole Lewis and Lucinda Secrest McDowell
<?php
if ( is_singular() ) {
$terms = get_the_terms( get_the_ID(), 'department' );
if ( $terms && ! is_wp_error( $terms ) ) {
foreach ( $terms as $term ) {
$group = get_field( 'department_ads', 'department_' . $term->term_id );
if ( ! empty( $group['above_content_full_width'] ) ) {
echo do_shortcode( $group['above_content_full_width'] );
break;
}
}
}
}
?>