Taxonomy class in post_class

Hi,

I need help here, here’s my question…
How do you remove/exclude a taxonomy class in post_class WordPress?

Thanks

Hi mabuc

function filter_classes($classes) {
$classes = array_diff($classes, array(“tax-class”));
return $classes;
}
add_filter(‘post_class’,filter_classes’);

I already tried this but it’s for static class… I want the taxonomy class…