Social benefit project

Unfortunately this project hasn't been funded on time!
Post-Carnival-Kids-2
No new updates
No backers yet!

$0
raised of $10,000

This project will only be funded if at least $10,000 is raised by August 31, 2017
Project sponsor

  • No reward

    I don't want reward!

  • reward1

    reward description

Create an Account to Start a Campaign

//$errors = register_new_user($_POST['user_login'], $_POST['user_email']);
$errors = wp_create_user( $_POST['user_login'], $_POST['user_password'], $_POST['user_email'] );
if (!is_wp_error($errors)) {
//Success
$return['result'] = true;
$return['redirect']=home_url().'/launch-project/';
$return['message'] = esc_html__('Registration complete.', 'funding');
} else {
//Something's wrong
$return['result'] = false;
$return['error'] = $errors -> get_error_message();
}
}
echo $this -> json_encode($return);
exit();
}
}

×