Home › Forums › ACF PRO › Save and show taxonomy name instead of ID › Reply To: Save and show taxonomy name instead of ID
The do_shortcode() comes out of something else, and it works for the other fields. But, i have got the field which gave the problem also fixed.
The solution was this:
$terms_coach_thema = get_field('coach_thema');
if( $terms_coach_thema ):
foreach( $terms_coach_thema as $term_coach_thema ):
echo '<li class="werkgebied-item">';
echo esc_html( $term_coach_thema->name );
echo '</li>';
endforeach;
endif;
So this topic can be closed.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.