Skip to content

Instantly share code, notes, and snippets.

@kavyagokul
Created February 21, 2014 09:05
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save kavyagokul/9131042 to your computer and use it in GitHub Desktop.
Save kavyagokul/9131042 to your computer and use it in GitHub Desktop.
Remove a particular body class in WordPress
function mp_remove_body_classes($classes, $class){
foreach($classes as &$str){
if(strpos($str, "YOUR_CLASS_HERE") > -1){
$str = "";
}
}
return $classes;
}
add_filter("body_class", "mp_remove_body_classes", 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment