Hi,
I added fields to a taxonomy term, but would like to display them on a single CPT. I do not know how to do it and whether it is possible at all.
I would be grateful for any help.
Regards!
Tsering
You need to get the terms the CPT is added to using get_the_terms()
Then you need to loop over those terms an get the fields for it
foreach ($terms as $term) {
$value = get_field('your field name', $term);
}