Yoast\WP\SEO\Helpers
Robots_Txt_Helper::add_sitemap()
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() Robots Txt Helper::add sitemap Yoast 24.6
public function add_sitemap( $absolute_path ) { if ( ! \in_array( $absolute_path, $this->robots_txt_sitemaps, true ) ) { $this->robots_txt_sitemaps[] = $absolute_path; } }