Cannot understand the value date/time
-
I use the lunar calendar and Google records this error
How can I show the editing and publishing date for Google?How to edit these codes to show the date in the Google structured data testing tool
1441/10/01 23:30:02 (Cannot understand the value 1399/2/31 23:30:02 as a date/time. Learn more about
$_date_published = $this->snippet->item->date_published();
if ($_date_published) {
$this->build[‘root’][‘items’][‘published’] = array(‘tag’ => ‘meta’, ‘itemprop’ => ‘datePublished’, ‘content’ => $_date_published);
}$_date_modified = $this->snippet->item->date_modified();
if ($_date_modified && $_date_published != $_date_modified) {
$this->build[‘root’][‘items’][‘modified’] = array(‘tag’ => ‘meta’, ‘itemprop’ => ‘dateModified’, ‘content’ => $_date_modified);
}
}
}
The topic ‘Cannot understand the value date/time’ is closed to new replies.