<?php
//Modo UNO
if ( is_product_category() ) {
$term = get_queried_object();
$thumbnail_id = get_term_meta( $term->term_id, 'thumbnail_id', true );
if ( $thumbnail_id ) {
$image = wp_get_attachment_image_src( $thumbnail_id, 'full' );
if ( $image ) {
echo '<img src="' . $image[0] . '" alt="' . $term->name . '" />';
}
}
}
?>
<?php
//Modo Dos como Background Image
$category = get_queried_object();
$category_id = $category->term_id;
$thumbnail_id = get_term_meta( $category_id, 'thumbnail_id', true );
$category_image_url = wp_get_attachment_url( $thumbnail_id );
if ( $category_image_url ) {
echo '<div style="background-image:url('.esc_url( $category_image_url ).');background-size: cover;"></div>';
}
?>