Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save taricco/81c773d19b2934f1ac189fa34b4e0746 to your computer and use it in GitHub Desktop.

Select an option

Save taricco/81c773d19b2934f1ac189fa34b4e0746 to your computer and use it in GitHub Desktop.
add_filter( 'body_class', 'plm_custom_body_class' );
function plm_custom_body_class( $classes ) {
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_enabled() ) {
$classes[] = 'full-width-content';
$classes[] = 'hide-page-header';
return $classes;
}
else {
return $classes;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment