Manager::load_elementor_integration()

Loads the Elementor integration if Elementor is currently active.

Contents


Source

File: src/Tribe/Integrations/Manager.php

	public function load_elementor_integration() {
		if ( ! defined( 'ELEMENTOR_PATH' ) || empty( ELEMENTOR_PATH ) ) {
			return;
		}

		tribe_register_provider( Elementor_Integration::class );
	}

Top ↑

Changelog

Changelog
Version Description
5.4.4 Introduced.