How to display Woocommerce Category image?

后端 未结 9 1515
说谎
说谎 2020-12-08 07:41

I use this code in PHP:

$idcat = 147;
$thumbnail_id = get_woocommerce_term_meta( $idcat, \'thumbnail_id\', true );
$image = wp_get_attachment_url( $thumbnail         


        
9条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-08 08:38

     'product_cat',
    	'hide_empty' => false,
    	) ); // Get Terms
    
    foreach ($terms as $key => $value) 
    {
    	$metaterms = get_term_meta($value->term_id);
    	$thumbnail_id = get_woocommerce_term_meta($value->term_id, 'thumbnail_id', true );
    	$image = wp_get_attachment_url( $thumbnail_id );
    	echo '';
    } // Get Images from woocommerce term meta
    
    ?>

提交回复
热议问题