Get total number of comment of the posts written by an author

You could use get_comments(), this way you don’t have to loop through posts.

<?php
    $args = array(
        'post_author' => '' // fill in post author ID
    );

    $author_comments = get_comments($args);

    echo count($author_comments);

?>

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)