如何在wordpress中获得术语/分类图像


How to get term/taxonomy image in wordpress?

我想显示具有特定分类图像的所有术语。我使用get_term()函数获得了所有术语的详细信息。

<?php
$terms = get_terms( 'vehicle_type' ); 
foreach ($terms as $term) : 
    echo $term->slug;
    $colors = apply_filters( 'taxonomy-images-get-terms', '', array(
    'taxonomy' => 'vehicle_type',
        'term_args' => array(
            'slug' => $term->slug,
            )
    ) 
);
foreach( (array) $colors as $color) :
    echo wp_get_attachment_image( $color->image_id, 'full', array('class' => 'alignnone'));
    //echo $term->name;
endforeach;
endforeach;
?>

但是它显示了所有图像的相同路径。http://localhost/mototrader/wp-includes/images/media/default.png

如何获得与该分类法相关的图像的实际路径

您也可以这样尝试

 <?php 
$cat_id = get_query_var('cat');
$catlist = get_categories('hide_empty=0&child_of=' . $cat_id);
echo "<ul>";
foreach($catlist as $categories_item)
{
echo '<h1><a href="' . get_category_link( $categories_item->term_id ) . '" title="' . sprintf( __( "View all products in %s" ), $categories_item->name ) . '" ' . '>' . $categories_item->name.'</a> </h1> ';
echo '<div class="categoryoverview clearfix">';
    $terms = apply_filters( 'taxonomy-images-get-terms', '' );
    if ( ! empty( $terms ) ) {
      foreach( (array) $terms as $term ) {
        if($term->term_id == $categories_item->term_id) {
           print '<a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">' . wp_get_attachment_image( $term->image_id, 'thumbnail' );
           echo '</a>';
        }
    }
    echo '<p>'. $categories_item->description; echo '</p>';
}
echo '</div>';
}
echo "</ul>";

您可以添加高级自定义字段

& lt; & lt;使用create image字段

& lt; & lt;为该图像分配每个分类

& lt; & lt;您可以很容易地获得相应的分类图像。

参考>> https://www.advancedcustomfields.com/resources/adding-fields-taxonomy-term/