Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created September 5, 2017 14:01
Show Gist options
  • Save qwersk/b167ce0922dd6f37fdf3d64e5b3fa19d to your computer and use it in GitHub Desktop.
Save qwersk/b167ce0922dd6f37fdf3d64e5b3fa19d to your computer and use it in GitHub Desktop.
Remove class from body #WP #Wordpress
<?php
add_filter("body_class", "clean_body_class", 10, 2);
function clean_body_class($wp_classes){
if(is_front_page()){
if(($key = array_search("page", $wp_classes)) !== false) {
unset($wp_classes[$key]);
}
}
return $wp_classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment