WP_Block_Styles_Registry::get_instance
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 Block Styles Registry::get instance WP 7.0.2
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}