# wordpress-seo/28.0/admin/views/interface-yoast-form-element.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.0/code/admin/views/interface-yoast-form-element.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.0/raw/admin/views/interface-yoast-form-element.php
- Modified: 2018-03-20T16:19:04+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.0/code/admin/views/interface-yoast-form-element.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

/**
 * Generate the HTML for a form element.
 */
interface Yoast_Form_Element {

	/**
	 * Return the HTML for the form element.
	 *
	 * @return string
	 */
	public function get_html();
}

```
