Si quieres mostrar sólo los productos de la última categoría dentro de tu sección de productos relacionados de WooCommerce, entonces coloca el siguiente código en tus funciones.php.add_filter( ‘woocommerce_get_related_product_cat_terms’, ‘last_child_cats_only’, 10, 2 );function last_child_cats_only( $term_ids, $product ) {si(!$producto) {devolver $term_ids;} $cats_array=array(); $terms=wp_get_post_terms($producto, ‘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; } devolver $term_ids;}