WordPress 的 comment_class() 与 body_class() 函数里默认会输出用户名,要想删除其中的用户名,只需把以下代码添加到当前主题的 functions.php 中即可。

function wp_comment_body_class($content){ 
    $pattern = "/(.*?)([^>]*)author-([^>]*)(.*?)/i";
    $replacement = '$1$4';
    $content = preg_replace($pattern, $replacement, $content);  
    return $content;
}
add_filter('comment_class', 'wp_comment_body_class');
add_filter('body_class', 'wp_comment_body_class');