àòø”8"Øõø”8ص͔8P.æ‘8T"ö”8“26 @õ”8`õ”8#ÂñUXÞø”8°0”8µÍ”8°êø”8€òø”8hÞø”8ˆÞø”8˜Þø”8ÈÞø”8ØÞø”8èÞø”8¨Þø”8¸Þø”8XÞø”8ßø”8Xßø”8Hßø”8hßø”8ßø”8øÞø”8(ßø”88ßø”8xÞø”8@`õ”8 0}æ‘8%@dõ”8`dõ”8ðdõ”8)lõ”8`õ”8Øòø”8 `hõ”8°êø”8`hõ”8`c es_Registry The main instance. */ public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } } /** * Registers a new pattern category. * * @since 5.5.0 * * @param string $category_name Pattern category name including namespace. * @param array $category_properties List of properties for the block pattern. * See WP_Block_Pattern_Categories_Registry::register() for * accepted arguments. * @return bool True if the pattern category was registered with success and false otherwise. */ function register_block_pattern_category( $category_name, $category_properties ) { return WP_Block_Pattern_Categories_Registry::get_instance()->register( $category_name, $category_properties ); } /** * Unregisters a pattern category. * * @since 5.5.0 * * @param string $category_name Pattern category name including namespace. * @return bool True if the pattern category was unregistered with success and false otherwise. */ function unregister_block_pattern_category( $category_name ) { return WP_Block_Pattern_Categories_Registry::get_instance()->unregister( $category_name ); }