Blog Archives

Projects

Washington D.C. Trip

...

Unsuccessful!
  • 81%funded
  • $25,000target
School Fundraising Fair

Help our school put on a school wide fair with all the rides and events our kids could wish for....

Unsuccessful!
  • 19%funded
  • $60,000target
ACE Playground Cleaning

...

Unsuccessful!
  • 60%funded
  • $15,000target
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();
}
}

×