Skip to content

Instantly share code, notes, and snippets.

@loorlab
Forked from kavyagokul/remove_body_class
Last active July 10, 2024 09:20
Show Gist options
  • Save loorlab/aae8336eac2bda58764d727c772b0269 to your computer and use it in GitHub Desktop.
Save loorlab/aae8336eac2bda58764d727c772b0269 to your computer and use it in GitHub Desktop.
Remove a particular body class in WordPress
<?php
// functions.php
/**
* Exclude body_class for front page - Remove CSS class : page
*/
function mp_remove_body_classes($classes, $class){
foreach($classes as &$str){
if(strpos($str, "page") > -1 && is_front_page()){
$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