WP_Sitemaps::redirect_sitemapxml()publicWP 5.5.0

Redirects a URL to the wp-sitemap.xml

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

Хуков нет.

Возвращает

true|false. Bypass value.

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

$WP_Sitemaps = new WP_Sitemaps();
$WP_Sitemaps->redirect_sitemapxml( $bypass, $query );
$bypass(true|false) (обязательный)
Pass-through of the pre_handle_404 filter value.
$query(WP_Query) (обязательный)
The WP_Query object.

Список изменений

С версии 5.5.0 Введена.

Код WP_Sitemaps::redirect_sitemapxml() WP 6.5.2

public function redirect_sitemapxml( $bypass, $query ) {
	// If a plugin has already utilized the pre_handle_404 function, return without action to avoid conflicts.
	if ( $bypass ) {
		return $bypass;
	}

	// 'pagename' is for most permalink types, name is for when the %postname% is used as a top-level field.
	if ( 'sitemap-xml' === $query->get( 'pagename' )
		|| 'sitemap-xml' === $query->get( 'name' )
	) {
		wp_safe_redirect( $this->index->get_index_url() );
		exit();
	}

	return $bypass;
}