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



unregister_block_template › WordPress Function

Seit6.7.0
Veraltetn/v
unregister_block_template ( $template_name )
Parameter:
  • (string) $template_name Template name in the form of `plugin_uri//template_name`.
    Erforderlich: Ja
Gibt zurück:
  • (WP_Block_Template|WP_Error) The unregistered template object on success, WP_Error object on failure or if the template doesn't exist.
Definiert in:
Codex:

Unregister a block template.



Quellcode

function unregister_block_template( $template_name ) {
	return WP_Block_Templates_Registry::get_instance()->unregister( $template_name );
}