Skip to content

Instantly share code, notes, and snippets.

@jstnkrr
Last active April 8, 2016 20:48
Show Gist options
  • Save jstnkrr/846cebbf874d3fb313cd to your computer and use it in GitHub Desktop.
Save jstnkrr/846cebbf874d3fb313cd to your computer and use it in GitHub Desktop.
region_body_class
<?php
// add a custom body class to a Wordpress template
// place this at the top of the template file before output
add_filter('body_class', 'region_body_class');
function region_body_class($classes) {
$classes[] = 'template-body-class';
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment