To apply the hack, just paste the code below into your functions.php file to add automatically body class to body tag based on sidebar active.
1 2 3 4 5 6 7 8 9 | function wpfme_has_sidebar( $classes ) { if (is_active_sidebar( 'sidebar' )) { // add 'class-name' to the $classes array $classes [] = 'has_sidebar' ; } // return the $classes array return $classes ; } add_filter( 'body_class' , 'wpfme_has_sidebar' ); |
0 Comments.