function ozel_yorumcu_ismi( $author, $comment_ID, $comment ) {
    $ozel_isim = 'Teknoloji Dostu';

    if ( ! $comment->user_id ) {
        return $ozel_isim;
    }

    return $author;
}

add_filter( 'get_comment_author', 'ozel_yorumcu_ismi', 10, 3 );
Kodu functions.php ye ekleyin.