WPSEO_Frontend::robots()publicYoast 1.0

Outputs the meta robots value.

Метод класса: WPSEO_Frontend{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPSEO_Frontend = new WPSEO_Frontend();
$WPSEO_Frontend->robots();

Код WPSEO_Frontend::robots() Yoast 22.4

public function robots() {
	_deprecated_function( __METHOD__, 'Yoast SEO 14.0' );

	$presentation            = $this->get_current_page_presentation();
	$presenter               = new Robots_Presenter();
	$presenter->presentation = $presentation;
	$presenter->helpers      = $this->helpers;
	$presenter->replace_vars = $this->replace_vars;
	echo $presenter->present();
}