WP_Block_Supports::get_instance() WordPress Method

The WP_Block_Supports::get_instance() method is a static method used to get an instance of the WP_Block_Supports class. This method is useful for getting an instance of the class when you need to use the methods and properties of the class.

WP_Block_Supports::get_instance() #

Utility method to retrieve the main instance of the class.


Description

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


Top ↑

Return

(WP_Block_Supports) The main instance.


Top ↑

Source

File: wp-includes/class-wp-block-supports.php

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

		return self::$instance;
	}


Top ↑

Changelog

Changelog
VersionDescription
5.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.