[ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
Blocks API: WP_Block_Type_Registry class
File Size: | 186 lines (5 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
register( $name, $args = array() X-Ref |
Registers a block type. return: WP_Block_Type|false The registered block type on success, or false on failure. param: string|WP_Block_Type $name Block type name including namespace, or alternatively param: array $args Optional. Array of block type arguments. Accepts any public property since: 5.0.0 |
unregister( $name ) X-Ref |
Unregisters a block type. return: WP_Block_Type|false The unregistered block type on success, or false on failure. param: string|WP_Block_Type $name Block type name including namespace, or alternatively since: 5.0.0 |
get_registered( $name ) X-Ref |
Retrieves a registered block type. return: WP_Block_Type|null The registered block type, or null if it is not registered. param: string $name Block type name including namespace. since: 5.0.0 |
get_all_registered() X-Ref |
Retrieves all registered block types. return: WP_Block_Type[] Associative array of `$block_type_name => $block_type` pairs. since: 5.0.0 |
is_registered( $name ) X-Ref |
Checks if a block type is registered. return: bool True if the block type is registered, false otherwise. param: string $name Block type name including namespace. since: 5.0.0 |
get_instance() X-Ref |
Utility method to retrieve the main instance of the class. The instance will be created if it does not exist yet. return: WP_Block_Type_Registry The main instance. since: 5.0.0 |
Generated: Thu Nov 21 01:00:03 2024 | Cross-referenced by PHPXref 0.7.1 |