Home › Forums › General Issues › Show Taxonomy Image on Posts › Reply To: Show Taxonomy Image on Posts
Think I have worked this out using a foreach loop from get_terms and then test to see if the post is in the category still with in_category
$types = get_terms( array(
'taxonomy' => 'category',
'hide_empty' => true,
) );
foreach($types as $type) {
$image = get_field('jg_category_tag', 'category_' . $type->term_id . '' );
if( in_category($type->term_id )) {
echo '<img src="' . $image['url'] . '" /> ';
}
}
Now the posts in the loop will display the categories images only if they belong to the category.
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.