Provider::remove_yoast_legacy_integration()

Prevent the old Yoast plugin integration with TEC from loading.


Return

(void)


Top ↑

Source

File: src/Events/Integrations/Plugins/WordPress_SEO/Provider.php

	public function remove_yoast_legacy_integration(): void {
		$tec_integration = YoastSEO()->classes->get( 'Yoast\\WP\\SEO\\Integrations\\Third_Party\\The_Events_Calendar' );
		if ( ! empty( $tec_integration ) ) {
			remove_filter( 'wpseo_schema_graph_pieces', [ $tec_integration, 'add_graph_pieces' ], 11 );
		}
	}

Top ↑

Changelog

Changelog
Version Description
6.0.4 Introduced.