Skip to content

Instantly share code, notes, and snippets.

@radarin
Created May 11, 2020 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarin/de5ebbda07f5970aff7d6d0f18152c22 to your computer and use it in GitHub Desktop.
Save radarin/de5ebbda07f5970aff7d6d0f18152c22 to your computer and use it in GitHub Desktop.
Sidebar entfernen
<?php
function remove_some_widgets(){
unregister_sidebar( 'left-sidebar' );
unregister_sidebar( 'top-widget' );
}
add_action( 'widgets_init', 'remove_some_widgets', 11 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment