You appear to be a bot. Output may be restricted
Description
Loads the plugin.
Usage
Abstract_Main::load();
Parameters
Returns
void
Source
File name: wordpress-seo/lib/abstract-main.php
Lines:
1 to 24 of 24
public function load() { if ( $this->container ) { return; } try { $this->container = $this->get_container(); Container_Registry::register( $this->get_name(), $this->container ); if ( ! $this->container ) { return; } if ( ! $this->container->has( Loader::class ) ) { return; } $this->container->get( Loader::class )->load(); } catch ( Exception $e ) { if ( $this->is_development() ) { throw $e; } // Don't crash the entire site, simply don't load. } }