# wordpress-seo/18.7/admin/metabox/class-metabox-null-tab.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.7/code/admin/metabox/class-metabox-null-tab.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.7/raw/admin/metabox/class-metabox-null-tab.php
- Modified: 2021-05-18T13:42:44+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.7/code/admin/metabox/class-metabox-null-tab.php#L10-L20`.

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

/**
 * Generates the HTML for a metabox tab.
 */
class WPSEO_Metabox_Null_Tab implements WPSEO_Metabox_Tab {

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

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

```
