Skip to content

Instantly share code, notes, and snippets.

@kasparsd
Created February 25, 2022 15:33
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 kasparsd/2b54b58d314499aef3db63b013e71bd2 to your computer and use it in GitHub Desktop.
Save kasparsd/2b54b58d314499aef3db63b013e71bd2 to your computer and use it in GitHub Desktop.
Remove the Custom Sidebars plugin override logic for widget output
<?php
// Remove the Custom Sidebars plugin override logic for widget output.
add_action(
'plugins_loaded',
function() {
if ( class_exists( 'CustomSidebarsVisibility' ) ) {
remove_filter(
'sidebars_widgets',
array( CustomSidebarsVisibility::instance(), 'sidebars_widgets' )
);
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment