Check type of Product in WooCommerce

PHOTO EMBED

Tue May 31 2022 09:47:25 GMT+0000 (Coordinated Universal Time)

Saved by @lancerunsite #woocommerce #product #type #php

    $_product = wc_get_product( $post_id );

    if( $_product->is_type( 'simple' ) ) {
    // do stuff for simple products
    } else {
    // do stuff for everything else
    }
content_copyCOPY