wordpress / latest / classes / wp_block_supports / get_instance.html

WP_Block_Supports::get_instance(): WP_Block_Supports

Utility method to retrieve the main instance of the class.

Description

The instance will be created if it does not exist yet.

Return

WP_Block_Supports The main instance.

Source

File: wp-includes/class-wp-block-supports.php. View all references

public static function get_instance() {
	if ( null === self::$instance ) {
		self::$instance = new self();
	}

	return self::$instance;
}

Used By

Used By Description

Changelog

Version Description
5.6.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_block_supports/get_instance