# wordpress-seo/18.2/src/deprecated/frontend/schema/class-schema-website.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.2/code/src/deprecated/frontend/schema/class-schema-website.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.2/raw/src/deprecated/frontend/schema/class-schema-website.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.2/code/src/deprecated/frontend/schema/class-schema-website.php#L10-L20`.

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

use Yoast\WP\SEO\Generators\Schema\Website;

/**
 * Returns schema Website data.
 *
 * @since      10.2
 * @deprecated 14.0
 */
class WPSEO_Schema_Website extends WPSEO_Deprecated_Graph_Piece {

	/**
	 * WPSEO_Schema_Website constructor.
	 *
	 * @deprecated 14.0
	 * @codeCoverageIgnore
	 *
	 * @param null $context The context. No longer used but present for BC.
	 */
	public function __construct( $context = null ) {
		parent::__construct( Website::class );
	}
}

```
