您可以使用the_category
筛选器挂钩回调函数,如下所示:
add_filter(\'the_category\',\'add_class_to_category\',10,3);
function add_class_to_category( $thelist, $separator, $parents){
$class_to_add = \'my-category-class\';
return str_replace(\'<a href="\', \'<a class="\' . $class_to_add . \'" href="\', $thelist);
}