Skip to content

Instantly share code, notes, and snippets.

@BenSibley
Last active August 29, 2015 14:26
Show Gist options
  • Save BenSibley/766ac77f8f5727fedc53 to your computer and use it in GitHub Desktop.
Save BenSibley/766ac77f8f5727fedc53 to your computer and use it in GitHub Desktop.
Changing Ignite Plus Layouts
function my_add_body_classes( $classes ) {
if( is_page('116') ) {
$classes[] = 'two-column';
$classes[] = 'two-column-right';
}
return $classes;
}
add_filter( 'body_class', 'my_add_body_classes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment