Archived topic
hide widgets area from "widgets" section
3 replies · Started by Basello on May 7, 2020
Hello,
I am triing to add a filter to a child theme, in order to hide all the widgets areas from the section "widgets" under "appearance" except for the "Off canvas panel" widget area. I can't do it. Is there a way to do it?
can you help me with that please?
Thank you
Hi there,
You can use this function: https://developer.wordpress.org/reference/functions/unregister_sidebar/
add_action( 'widgets_init', function() {
unregister_sidebar( 'sidebar-1' );
}, 20 );
You can find all of the IDs here: https://github.com/tomusborne/generatepress/blob/2.4.2/inc/general.php#L84-L93
Hope this helps :)
Hi,
Thank you, it's help a lot!
You're welcome :)