Home › Forums › Front-end Issues › Custom Taxonomy in ACF › Reply To: Custom Taxonomy in ACF
Hi!
Well, it shouldn’t be listed as a “list” as in
or
.. I want it listed in one line without touching the css so I coded it that way.. Also, there is a possibility that not all the Doctors will have a “Sub Specialty” that’s why there’s this line of code:
<?php
if (get_field('sub_specialty') != '') { ?>
I removed the array($terms);
too. =]
Here’s my final code on displaying the term name:
<?php
$terms = get_field('sub_specialty');
foreach ($terms as $term){
$subspec[] = '<a href="'.$term->slug.'" name="'.$term->slug.'" alt="'.$term->anem.'">'. $term->name .'</a>';
}
echo implode(' / ', $subspec);
?>
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.