Skip to content

Instantly share code, notes, and snippets.

@randyjhunt
Created March 29, 2009 23:04
Show Gist options
  • Select an option

  • Save randyjhunt/87552 to your computer and use it in GitHub Desktop.

Select an option

Save randyjhunt/87552 to your computer and use it in GitHub Desktop.
<!-- add the following code to your functions.php file -->
<?php
add_filter( 'sidebars_widgets', 'disable_all_widgets' );
function disable_all_widgets( $sidebars_widgets ) {
if ( is_home() )
$sidebars_widgets = array( false );
return $sidebars_widgets;
}
?>
<!-- via http://www.wprecipes.com/how-to-remove-widget-areas-on-your-blog-homepage-without-editing-template-files -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment