Yoast\WP\SEO\Presentations
Indexable_Date_Archive_Presentation::generate_robots
Generates the robots value.
Метод класса: Indexable_Date_Archive_Presentation{}
Хуков нет.
Возвращает
Массив. The robots value.
Использование
$Indexable_Date_Archive_Presentation = new Indexable_Date_Archive_Presentation(); $Indexable_Date_Archive_Presentation->generate_robots();
Код Indexable_Date_Archive_Presentation::generate_robots() Indexable Date Archive Presentation::generate robots Yoast 27.3
public function generate_robots() {
$robots = $this->get_base_robots();
if ( $this->options->get( 'noindex-archive-wpseo', false ) ) {
$robots['index'] = 'noindex';
}
return $this->filter_robots( $robots );
}