Echo the comment author title.
beans_comment_author( )
Return: (void)
Source
function beans_comment_author() {
beans_open_markup_e( 'beans_comment_title', 'div', array(
'class' => 'uk-comment-title',
'itemprop' => 'author',
'itemscope' => 'itemscope',
'itemtype' => 'http://schema.org/Person',
) );
echo get_comment_author_link();
beans_close_markup_e( 'beans_comment_title', 'div' );
}