WP_Block_Supports::get_instance
Utility method to retrieve the main instance of the class.
The instance will be created if it does not exist yet.
Method of the class: WP_Block_Supports{}
No Hooks.
Returns
WP_Block_Supports. The main instance.
Usage
$result = WP_Block_Supports::get_instance();
Changelog
| Since 5.6.0 | Introduced. |
WP_Block_Supports::get_instance() WP Block Supports::get instance code WP 6.8.3
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}