WC_Product::set_date_created PHP 메소드

set_date_created() 공개 메소드

Set product created date.
부터: 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