اینم پیدا کردم
function wpse_comment_moderator_log( $comment ) {
global $current_user;
get_currentuserinfo();
update_comment_meta( $comment->comment_ID, 'approved_by', $current_user->user_login );
}
add_action( 'comment_unapproved_to_approved', 'wpse_comment_moderator_log'...