Service_Provider::register()

Binds and sets up implementations.

Contents


Source

File: src/Tribe/Integrations/Divi/Service_Provider.php

	public function register() {
		$this->container->singleton( static::class, $this );

		$theme = wp_get_theme();

		if ( 'divi' !== strtolower( $theme->name ) && 'divi' !== strtolower( $theme->parent_theme ) ) {
			return;
		}

	}

Top ↑

Changelog

Changelog
Version Description
6.0.1 Introduced.