Get Custom Taxonomy Images
-
Hi !
I have a custom taxonomy with 500+ terms.
I use this script to get all terms
<?php $tax = 'dtcast'; // your taxonomy name // get the terms of taxonomy $terms = get_terms( $tax, [ 'hide_empty' => false, // do not hide empty terms ]); // loop through all terms foreach( $terms as $term ) { // display link to the term archive echo '<strong class="danny-vien"><a href="'. get_term_link( $term ) .'">'. $term->name .'</a></strong>'; } ?>
It’s work ok !
Now i want to get images of terms.
Please help me to get it.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Get Custom Taxonomy Images’ is closed to new replies.