ID ); $post_type = $the_product->post_type; if ( in_array( $post_type, array( 'product', 'product_variation' ) ) ) { if ( isset( $args['product_type'] ) ) { $product_type = $args['product_type']; } elseif ( 'product_variation' == $post_type ) { $product_type = 'variation'; } else { $terms = get_the_terms( $product_id, 'product_type' ); $product_type = ! empty( $terms ) && isset( current( $terms )->name ) ? sanitize_title( current( $terms )->name ) : 'simple'; } $classname = 'WC_Product_' . ucfirst( $product_type ); } else { $classname = false; $product_type = false; } // Filter classname so that the class can be overridden if extended. $classname = apply_filters( 'woocommerce_product_class', $classname, $product_type, $post_type, $product_id ); if ( $classname && class_exists( $classname ) ) { return new $classname( $the_product, $args ); } return false; } }