# wordpress-seo/27.6/src/editors/framework/seo/description-data-provider-interface.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 27.6. 22 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/27.6/code/src/editors/framework/seo/description-data-provider-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/27.6/raw/src/editors/framework/seo/description-data-provider-interface.php
- Modified: 2026-01-20T12:23:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/27.6/code/src/editors/framework/seo/description-data-provider-interface.php#L10-L20`.

```php
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong
namespace Yoast\WP\SEO\Editors\Framework\Seo;

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;
}

```
