Yoast\WP\SEO\Initializers

Disable_Core_Sitemaps::maybe_disable_core_sitemaps()publicYoast 1.0

Disables the core sitemaps if Yoast SEO sitemaps are enabled.

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

Хуков нет.

Возвращает

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

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

$Disable_Core_Sitemaps = new Disable_Core_Sitemaps();
$Disable_Core_Sitemaps->maybe_disable_core_sitemaps();

Код Disable_Core_Sitemaps::maybe_disable_core_sitemaps() Yoast 22.4

public function maybe_disable_core_sitemaps() {
	if ( $this->options->get( 'enable_xml_sitemap' ) ) {
		\add_filter( 'wp_sitemaps_enabled', '__return_false' );

		\add_action( 'template_redirect', [ $this, 'template_redirect' ], 0 );
	}
}