Wenn Sie nur Produkte aus der letzten Kategorie in Ihrem Abschnitt über WooCommerce-bezogene Produkte anzeigen möchten, dann setzen Sie den untenstehenden Code in Ihre Funktionen.php.
add_filter( 'woocommerce_get_related_product_cat_terms', 'last_child_cats_only_cats_only_cats_cats_only', 10, 2 );Funktion last_child_cats_only( $term_ids, $product ) {if(!$Produkt) {gibt $term_ids zurück;} $cats_array=array(); $terms=wp_get_post_terms($Produkt, 'Produkt_Katze'); foreach ( $Begriffe als $Schlüssel => $Begriff ){ $check_for_children=get_categories(array('parent' => $term->term_id, 'taxonomy' => 'produkt_katze')); if(empty($check_for_children)){ $cats_array[]=$term->term_id; } } if(!leer($cats_array)) { $term_ids=$cats_array; } gibt $term_ids zurück;}