Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Created May 2, 2020 13:58
Show Gist options
  • Save dotherightthing/1abb8d54a0f6f8d0b8b51bfe97f381ae to your computer and use it in GitHub Desktop.
Save dotherightthing/1abb8d54a0f6f8d0b8b51bfe97f381ae to your computer and use it in GitHub Desktop.
Add body class #wordpress #cheatsheet
/**
* Add a class to the body
*
* @example
* add_filter( 'body_class', 'my_body_classes' );
*/
function my_body_classes( $classes ) {
// Adds a class of custom-background-image to sites with a custom background image.
if ( some_condition() ) {
$classes[] = 'custom-background-image';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment