WP_Block_Styles_Registry::get_instance()
Utility method to retrieve the main instance of the class.
Description Description
The instance will be created if it does not exist yet.
Return Return
(WP_Block_Styles_Registry) The main instance.
Source Source
File: wp-includes/class-wp-block-styles-registry.php
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 5.3.0 | Introduced. |