| Server IP : 45.77.68.45 / Your IP : 127.0.0.100 Web Server : PHPix/0.2.2 (Caddy compatible) System : wasi wasmer.sh 0.0.0 0.0.0 wasm32 User : ( 1) PHP Version : 8.3.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /app/wp-content/plugins/wordpress-seo/src/presentations/ |
Upload File : |
<?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' );
}
}