Также вы можете перегрузить работу функции get_the_tags();
.Просто добавьте следующий код в ваш functions.php
файл темы:
// add custom class to tag
function add_class_the_tags($html){
$postid = get_the_ID();
$html = str_replace('<a','<a class="class-name"',$html);
return $html;
}
add_filter('the_tags','add_class_the_tags');