WPSEO_Frontend::robots()
Outputs the meta robots value.
Метод класса: WPSEO_Frontend{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WPSEO_Frontend = new WPSEO_Frontend(); $WPSEO_Frontend->robots();
Код WPSEO_Frontend::robots() WPSEO Frontend::robots Yoast 23.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(); }