/home/techb158/public_html/wp-content/plugins/wordpress-seo/src/editors/domain/seo
Edit: /home/techb158/public_html/wp-content/plugins/wordpress-seo/src/editors/domain/seo/description.php (1307B)
description_date = $description_date;
$this->description_template = $description_template;
}
/**
* Returns the data as an array format.
*
* @return array
*/
public function to_array(): array {
return [
'description_template' => $this->description_template,
'description_date' => $this->description_date,
];
}
/**
* Returns the data as an array format meant for legacy use.
*
* @return array
*/
public function to_legacy_array(): array {
return [
'metadesc_template' => $this->description_template,
'metaDescriptionDate' => $this->description_date,
];
}
}