Skip to content

Instantly share code, notes, and snippets.

@halgatewood
Last active December 18, 2015 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save halgatewood/5786722 to your computer and use it in GitHub Desktop.
Save halgatewood/5786722 to your computer and use it in GitHub Desktop.
Add Custom Body Classes
// ADD CUSTOM BODY CLASSES
add_filter('body_class','hg_body_classes');
function hg_body_classes($classes)
{
$classes[] = "theme-" . get_stylesheet();
// ... other theme logic
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment