Skip to content

Instantly share code, notes, and snippets.

@mirkoschubert
Created October 4, 2019 08:40
Show Gist options
  • Save mirkoschubert/23f10dda964d51bb679dbb3158da3911 to your computer and use it in GitHub Desktop.
Save mirkoschubert/23f10dda964d51bb679dbb3158da3911 to your computer and use it in GitHub Desktop.
Give a WordPress Child Theme a body Class
/**
* Custom Body Class for Child Theme
*/
function child_body_class( $classes ) {
$classes[] = 'child';
return $classes;
}
add_action( 'body_class', 'child_body_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment