Skip to content

Instantly share code, notes, and snippets.

@lelandf
Created May 7, 2016 01:48
Show Gist options
  • Save lelandf/9184ead1b5783fb264172a14d53d1ca6 to your computer and use it in GitHub Desktop.
Save lelandf/9184ead1b5783fb264172a14d53d1ca6 to your computer and use it in GitHub Desktop.
<?php
function automatic_column_layouts_body_classes( $classes ) {
// Adds a class of no-sidebar if the sidebar-1 widget area is not active.
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
$classes[] = 'no-sidebar';
}
return $classes;
}
add_filter( 'body_class', 'automatic_column_layouts_body_classes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment