Add a custom class to the Comment Reply Link in WordPress

In your template, replace the comment_reply_link() function by :

$myclass = 'myclass';
echo preg_replace( '/comment-reply-link/', 'comment-reply-link ' . $myclass, get_comment_reply_link(), 1 );