如何显示Woocommerce类别图像?

2022-08-30 12:48:54

我在PHP中使用以下代码:

$idcat = 147;
$thumbnail_id = get_woocommerce_term_meta( $idcat, 'thumbnail_id', true );
$image = wp_get_attachment_url( $thumbnail_id );
echo '<img src="'.$image.'" alt="" width="762" height="365" />';

手动设置的当前ID在哪里,但我需要在其他类别中的当前ID147

有什么建议吗?


答案 1

要在 中显示当前显示的类别的类别图像,请在 为 true 时使用当前类别:archive-product.phpterm_idis_product_category()

// verify that this is a product category page
if ( is_product_category() ){
    global $wp_query;

    // get the query object
    $cat = $wp_query->get_queried_object();

    // get the thumbnail id using the queried category term_id
    $thumbnail_id = get_term_meta( $cat->term_id, 'thumbnail_id', true ); 

    // get the image URL
    $image = wp_get_attachment_url( $thumbnail_id ); 

    // print the IMG HTML
    echo "<img src='{$image}' alt='' width='762' height='365' />";
}

答案 2

get_woocommerce_term_meta从Woo 3.6.0开始被剥夺。

所以改变

$thumbnail_id = get_woocommerce_term_meta($value->term_id, 'thumbnail_id', true );

进入:($value->term_id应该是woo类别ID)

get_term_meta($value->term_id, 'thumbnail_id', true)

有关详细信息,请参阅文档:https://docs.woocommerce.com/wc-apidocs/function-get_woocommerce_term_meta.html


推荐