Yoast\WP\SEO\Editors\Framework\Seo

Description_Data_Provider_Interface{}Yoast 1.0

Хуков нет.

Использование

$Description_Data_Provider_Interface = new Description_Data_Provider_Interface();
// use class methods

Методы

  1. public get_description_date()
  2. public get_description_template()

Код Description_Data_Provider_Interface{} Yoast 25.1

interface Description_Data_Provider_Interface {

	/**
	 * Retrieves the description template.
	 *
	 * @return string The description template.
	 */
	public function get_description_template(): string;

	/**
	 * Determines the date to be displayed in the snippet preview.
	 *
	 * @return string
	 */
	public function get_description_date(): string;
}