Home › Forums › Front-end Issues › Printing information from custom taxonomy › Reply To: Printing information from custom taxonomy
Hey John,
We’re using Advanced Custom Fields 4.4.11.
However, entering the code you supplied worked like a charm:
<?php
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
// the_field() echos the value and you do not need to include your own echo statement
the_field('game_publisher', $taxonomy.'_'.$term_id);
?>
Thank you!
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.