# wordpress-seo/18.1/admin/metabox/interface-metabox-tab.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.1/code/admin/metabox/interface-metabox-tab.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.1/raw/admin/metabox/interface-metabox-tab.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/18.1/code/admin/metabox/interface-metabox-tab.php#L10-L20`.

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

/**
 * Generates the HTML for a metabox tab.
 */
interface WPSEO_Metabox_Tab {

	/**
	 * Returns the html for the tab link.
	 *
	 * @return string
	 */
	public function link();

	/**
	 * Returns the html for the tab content.
	 *
	 * @return string
	 */
	public function content();
}

```
