WP_Block_Styles_Registry::get_instance()public staticWP 5.3.0

Utility method to retrieve the main instance of the class.

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

Метод класса: WP_Block_Styles_Registry{}

Хуков нет.

Возвращает

WP_Block_Styles_Registry. The main instance.

Использование

$result = WP_Block_Styles_Registry::get_instance();

Список изменений

С версии 5.3.0 Введена.

Код WP_Block_Styles_Registry::get_instance() WP 6.4.3

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

	return self::$instance;
}