function extra_acf_content() {
if ( is_product_category() ) {
// vars
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
$foto = get_field( 'extra_omschrijving', $queried_object );
$foto = get_field( 'extra_omschrijving', $taxonomy . '_' . $term_id );
if( get_field('extra_omschrijving', $taxonomy . '_' . $term_id) ) {
echo '<div class="cat-banner">' . $foto . '</div>';
}
}
}
add_action( 'woocommerce_after_shop_loop', 'extra_acf_content', 10 );
#acf #archive #category #functions #woocommerce