Yoast\WP\SEO\Helpers

Robots_Txt_Helper::add_sitemap()publicYoast 1.0

Add sitemap to robots.txt if it does not exist yet.

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

Хуков нет.

Возвращает

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

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

$Robots_Txt_Helper = new Robots_Txt_Helper();
$Robots_Txt_Helper->add_sitemap( $absolute_path );
$absolute_path(строка) (обязательный)
The absolute path to the sitemap to add.

Код Robots_Txt_Helper::add_sitemap() Yoast 22.4

public function add_sitemap( $absolute_path ) {
	if ( ! \in_array( $absolute_path, $this->robots_txt_sitemaps, true ) ) {
		$this->robots_txt_sitemaps[] = $absolute_path;
	}
}