Hybrid 1.1 Wordpress Theme

0 replies
Want to remove the primary widget area on your frontpage. This code works for me.

This is for Theme Hybrid.

add_filter( 'sidebars_widgets', 'disable_primary_widgets' );
function disable_primary_widgets( $sidebars_widgets ) {
if ( is_front_page() )
$sidebars_widgets['primary'] = false;
return $sidebars_widgets;
}
#hybrid #theme #wordpress

Trending Topics