function addUser($user_id){
$user_name = self::getUserName($user_id);
$source = array(
'post_title' => $user_name,
'post_name' => 'ID'.$user_id,
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'members',
'tax_input' => array('status_category' => array( 43 )),
'comment_status' => 'close'
);
$post_ID = wp_insert_post($source);
}