# wordpress-seo/trunk/src/presentations/indexable-error-page-presentation.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/presentations/indexable-error-page-presentation.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/presentations/indexable-error-page-presentation.php
- Modified: 2020-09-29T11:04:14+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/trunk/code/src/presentations/indexable-error-page-presentation.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Presentations;

/**
 * Class Indexable_Error_Page_Presentation.
 *
 * Presentation object for indexables.
 */
class Indexable_Error_Page_Presentation extends Indexable_Presentation {

	/**
	 * Generates the robots value.
	 *
	 * @return array The robots value.
	 */
	public function generate_robots() {
		$robots = $this->get_base_robots();

		$robots['index'] = 'noindex';

		return $this->filter_robots( $robots );
	}

	/**
	 * Generates the title.
	 *
	 * @return string The title.
	 */
	public function generate_title() {
		if ( $this->model->title ) {
			return $this->model->title;
		}

		return $this->options->get_title_default( 'title-404-wpseo' );
	}
}

```
