WP_Sitemaps::init
Initiates all sitemap functionality.
If sitemaps are disabled, only the rewrite rules will be registered by this method, in order to properly send 404s.
Метод класса: WP_Sitemaps{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$WP_Sitemaps = new WP_Sitemaps(); $WP_Sitemaps->init();
Список изменений
| С версии 5.5.0 | Введена. |
Код WP_Sitemaps::init() WP Sitemaps::init WP 7.1
public function init() {
// These will all fire on the init hook.
$this->register_rewrites();
add_action( 'template_redirect', array( $this, 'render_sitemaps' ) );
if ( ! $this->sitemaps_enabled() ) {
return;
}
$this->register_sitemaps();
// Add additional action callbacks.
add_filter( 'robots_txt', array( $this, 'add_robots' ), 0, 2 );
}