Skip to content

Instantly share code, notes, and snippets.

@cdils
Created January 11, 2015 23:25
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 cdils/572f62dbe9528a094104 to your computer and use it in GitHub Desktop.
Save cdils/572f62dbe9528a094104 to your computer and use it in GitHub Desktop.
<?php // Remove this entire line
// Add custom class to the body tag
add_filter( 'body_class', 'add_body_class' );
function add_body_class( $classes ) {
$classes[] = 'name-of-class';
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment