Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 08:24
Show Gist options
  • Select an option

  • Save Tsunamijaan/4400cd9cdcd2fcd1f58d37edd61f4069 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/4400cd9cdcd2fcd1f58d37edd61f4069 to your computer and use it in GitHub Desktop.
Disable widget areas on specific pages
<?php
add_filter( 'sidebars_widgets', 'disable_sidebar_widgets' );
function disable_sidebar_widgets( $sidebars_widgets ) {
if ( is_page('about-me') )
$sidebars_widgets = array( false );
return $sidebars_widgets;
}
?>
Note: Replaced about-me by your pages url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment