Skip to content

Instantly share code, notes, and snippets.

@phpbits
Last active October 20, 2019 12:06
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 phpbits/8d5ef6c3833f9620dc9c99453cf81801 to your computer and use it in GitHub Desktop.
Save phpbits/8d5ef6c3833f9620dc9c99453cf81801 to your computer and use it in GitHub Desktop.
<?php
/**
** Add custom body class
**/
add_filter('body_class', 'custom_body_class');
function custom_body_class( $classes ) {
$classes[] = 'new-body-class';
return $classes;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment