-
Artwork Title:
-
Year:
-
Dimensions:
-
Department:
-
Category:
-
Artwork Title:
-
Year:
-
Dimensions:
-
Department:
-
Category:
<?php
// ACF Fields
$artwork_title = get_field('titre_oeuvre'); // nom exact du champ ACF
$year = get_field('annee');
$dimensions = get_field('dimensions');
// WooCommerce Taxonomies
$categories = wc_get_product_category_list(get_the_ID(), ', ');
$departments = get_the_term_list(get_the_ID(), 'department', '', ', ');
?>
<ul>
<!-- Artwork Title -->
<?php if(!empty($artwork_title)): ?>
<li>
<span>Artwork Title:</span>
<?php echo esc_html($artwork_title); ?>
</li>
<?php endif; ?>
<!-- Year -->
<?php if(!empty($year)): ?>
<li>
<span>Year:</span>
<?php echo esc_html($year); ?>
</li>
<?php endif; ?>
<!-- Dimensions -->
<?php if(!empty($dimensions)): ?>
<li>
<span>Dimensions:</span>
<?php echo esc_html($dimensions); ?>
</li>
<?php endif; ?>
<!-- Department -->
<?php if(!empty($departments)): ?>
<li>
<span>Department:</span>
<?php echo wp_kses_post($departments); ?>
</li>
<?php endif; ?>
<!-- Category -->
<?php if(!empty($categories)): ?>
<li>
<span>Category:</span>
<?php echo wp_kses_post($categories); ?>
</li>
<?php endif; ?>
</ul>
