Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Created August 15, 2019 12:57
Show Gist options
  • Save dotherightthing/47d81c5e920800ca87fe727de807a689 to your computer and use it in GitHub Desktop.
Save dotherightthing/47d81c5e920800ca87fe727de807a689 to your computer and use it in GitHub Desktop.
[Add a CSS class to the body] #wordpress

Add a CSS class to the body

Created: 2017.03.26

To inherit styles, use the same classnames as used in the parent theme. e.g. no-sidebar

add_filter('body_class','SITENAME__class_names');
function SITENAME__class_names($classes) {
  $CUSTOM_FIELD_VALUE = get_field( 'CUSTOM_FIELD_NAME' );
  if ( SOME_CONDITION() ) {
    $classes[] = 'SOME_CLASS';
  }
  return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment