こんな感じで絞り込めませんか?一度試してみてください。
PHP
1function my_current_user_comments( $cwhere ) {
2 if ( !is_admin() ) {
3 $user_id = get_current_user_id();
4 $cwhere .= " AND $wpdb->comments.user_id = $user_id";
5 }
6 return $cwhere;
7} // (未テスト)
8add_filter( 'comment_feed_where', 'my_current_user_comments' );
9
10function my_comments_for_current_author( $query ) {
11 if ( !is_admin() ) {
12 $query->query_vars[ 'user_id' ] = get_current_user_id();
13 }
14 return $query;
15} // (未テスト)
16add_filter( 'pre_get_comments', 'my_comments_for_current_author' );
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。