Disable default WordPress widgets in sidebar
This function will disable all widgets: add_filter( ‘sidebars_widgets’, ‘wpse134172_disable_all_widgets’ ); function wpse134172_disable_all_widgets( $sidebars_widgets ) { if (true == true) { $sidebars_widgets = array( false ); } return $sidebars_widgets; } Now the true=true conditional will disable them all the time, while you only want this to happen with a clean install. So you will have to … Read more