Created
March 29, 2009 23:04
-
-
Save randyjhunt/87552 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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