WPSEO_Frontend::get_robots()publicYoast 1.0

Retrieves the meta robots value.

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

Хуков нет.

Возвращает

Строку.

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

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

Код WPSEO_Frontend::get_robots() Yoast 22.4

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

	$presentation = $this->get_current_page_presentation();
	return $presentation->robots;
}