wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



unregister_block_type › WordPress Function

Seit5.0.0
Veraltetn/v
unregister_block_type ( $name )
Parameter:
  • (string|WP_Block_Type) $name Block type name including namespace, or alternatively a complete WP_Block_Type instance.
    Erforderlich: Ja
Gibt zurück:
  • (WP_Block_Type|false) The unregistered block type on success, or false on failure.
Definiert in:
Codex:

Unregisters a block type.



Quellcode

function unregister_block_type( $name ) {
	return WP_Block_Type_Registry::get_instance()->unregister( $name );
}