List user comments in author page

I'm trying to display a list of the author comments in the authors page but it only shows No comments made.

How can I list user comments in the authors page?

?php
$args = array(
    'user_id' = $user-ID,
    'number' = 10, // how many comments to retrieve
    'status' = 'approve'
    );

$comments = get_comments( $args );

if ( $comments )
{
    $output.= "ul\n";
    foreach ( $comments as $c )
    {
    $output.= 'li';
    $output.= 'a href="'.get_comment_link( $c-comment_ID ).'"';
    $output.= get_the_title($c-comment_post_ID);
    $output.= '/a, Posted on: '. mysql2date('m/d/Y', $c-comment_date, $translate);
    $output.= "/li\n";
    }
    $output.= '/ul';

    echo $output;
} else { echo "No comments made";} ?

Topic wp-comment-query author author-template comments Wordpress

Category Web


Try with WP_Comment_Query and make sure you have the right Author ID from the Author Template.

// WP_Comment_Query arguments
$args = array (
    'user_id'        => $user->ID,
    'post_status'    => 'approve',
    'number'         => '10',
);

// The Comment Query
$comments = new WP_Comment_Query;
$comments = $comments->query( $args );

// The Comment Loop
if ( $comments ) {

    $output.= "<ul>\n";

    foreach ( $comments as $c ) {
        $output.= '<li>';
        $output.= '<a href="'.get_comment_link( $c->comment_ID ).'">';
        $output.= get_the_title($c->comment_post_ID);
        $output.= '</a>, Posted on: '. mysql2date('m/d/Y', $c->comment_date, $translate);
        $output.= "</li>\n";
    }

    $output.= '</ul>';

    echo $output;
} else {
    echo 'No comments found.';
}

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.