Si vous souhaitez afficher uniquement les produits de la dernière catégorie dans votre section de produits apparentés de WooCommerce, placez le code suivant dans vos fonctions.php.add_filter(‘woocommerce_get_related_product_cat_terms’, ‘last_child_cats_only’, 10, 2 ) ;function last_child_cats_only( $term_ids, $product ) {si(!$product) {return $term_ids ;} $cats_array=array() ; $terms=wp_get_post_terms($product, ‘product_cat’) ; foreach ( $terms as $key => $term ){ $check_for_children=get_categories(array(‘parent’ => $term->term_id, ‘taxonomy’ => ‘product_cat’)) ; si(empty($check_for_children)){ $cats_array[]=$term->term_id ; } } si(!empty($cats_array)) { $term_ids=$cats_array ; } return $term_ids ;}