Call to undefined function wp_delete_user()
At first, please ask WP questions at: Wordpress.Stackexchange.com
p.s.: before that line insert:
require_once(ABSPATH.'wp-admin/includes/user.php');
I found this in a Google search and wanted to add this for anyone looking for a solution when using WordPress multisite. Instead of loading wp-admin/includes/user.php, you'll need to load wp-admin/includes/ms.php like:
require_once( ABSPATH . 'wp-admin/includes/ms.php' );