Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created June 26, 2012 19:09
Show Gist options
  • Save ekka21/2998115 to your computer and use it in GitHub Desktop.
Save ekka21/2998115 to your computer and use it in GitHub Desktop.
Wordpress: Add a new class to body_class
add_filter('body_class','add_mobile_class');
function add_mobile_class($classes) {
$classes[] = 'NEW_CLASS';
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment