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



unregister_sidebar › WordPress Function

Seit2.2.0
Veraltetn/v
unregister_sidebar ( $sidebar_id )
Parameter:
  • (string|int) $sidebar_id The ID of the sidebar when it was registered.
    Erforderlich: Ja
Definiert in:
Codex:

Removes a sidebar from the list.



Quellcode

function unregister_sidebar( $sidebar_id ) {
	global $wp_registered_sidebars;

	unset( $wp_registered_sidebars[ $sidebar_id ] );
}