WC_Product::set_price PHP Method

set_price() public method

Set the product's active price.
public set_price ( string $price )
$price string Price.
    public function set_price($price)
    {
        $this->set_prop('price', wc_format_decimal($price));
    }
WC_Product