Remove sidebar from post, keep content width 100%
-
add_filter( 'sidebars_widgets', 'disable_all_widgets' ); function disable_all_widgets( $sidebars_widgets ) { if ( is_single() ) $sidebars_widgets = array( false ); return $sidebars_widgets; }
works to remove sidebars from posts, but content width is still restrained to the same parameters as if sidebar was still visible. how do I fix this?
anybody? please?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Remove sidebar from post, keep content width 100%’ is closed to new replies.