sqlsourcerer
0
Q:

get product price by id woocommerce snippet

/**
 * Get product price by product ID.
 */
function wc_get_product_price( $product_id ) {
    return ( $product = wc_get_product( $product_id ) ) ? $product->get_price() : false;
}
0

New to Communities?

Join the community