Service_Provider::register()
Binds and sets up implementations.
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;
}
}
Changelog
| Version | Description |
|---|---|
| 6.0.1 | Introduced. |