I'm trying to get current product id but its returns null;
I want to use product id in below function
new WC_Product( $product_id);
note that i want get product id in "functions.php" file.
I tried
global $post;
$id = $post->ID
and
global $product;
$id = $product->id;
But that's not working