WC_Product::set_date_created PHP Method

set_date_created() public method

Set product created date.
Since: 2.7.0
public set_date_created ( string $timestamp )
$timestamp string Timestamp.
    public function set_date_created($timestamp)
    {
        $this->set_prop('date_created', is_numeric($timestamp) ? $timestamp : strtotime($timestamp));
    }
WC_Product