获取术语的所有自定义分类图像

Get All Custom Taxonomy Images of Terms

我有一个包含 500 多个术语的自定义分类法是“dtcast”

我将此插件用于自定义分类图像术语:Advanced Category and Custom Taxonomy Image

现在,我使用此脚本获取所有术语的列表

<?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>';
}
?>

一切正常!

但我想获取术语的图像。 请帮我拿下。

你能试试吗:

$image = get_taxonomy_image( $term->term_id );