# wordpress-seo/28.3/src/generators/generator-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.3/code/src/generators/generator-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.3/raw/src/generators/generator-interface.php
- Modified: 2020-09-01T12:27:02+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/28.3/code/src/generators/generator-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Generators;

use Yoast\WP\SEO\Context\Meta_Tags_Context;

interface Generator_Interface {

	/**
	 * Returns a string, or other Thing that the associated presenter can handle.
	 *
	 * @param Meta_Tags_Context $context The meta tags context.
	 *
	 * @return mixed
	 */
	public function generate( Meta_Tags_Context $context );
}

```
