Skip to content

Instantly share code, notes, and snippets.

@lelandf
Created February 13, 2021 16:34
Show Gist options
  • Save lelandf/389210b055f509170e394afddc9f374a to your computer and use it in GitHub Desktop.
Save lelandf/389210b055f509170e394afddc9f374a to your computer and use it in GitHub Desktop.
Remove WordPress body class
add_filter( 'body_class', 'leland_remove_tag_body_class' );
function leland_remove_tag_body_class( $classes ) {
$class_to_remove = 'tag';
$remove = array_search( $class_to_remove, $classes );
if ( $remove ) {
unset( $classes[$remove] );
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment