Uses
Uses | Description |
---|---|
wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
wp-includes/user.php: wp_create_user() | A simpler way of inserting a user into the database. |
This function has been deprecated. Use wp_create_user() instead.
An alias of wp_create_user().
(string) (Required) The user's username.
(string) (Required) The user's password.
(string) (Required) The user's email.
(int) The new user's ID.
File: wp-includes/deprecated.php
function create_user($username, $password, $email) { _deprecated_function( __FUNCTION__, '2.0.0', 'wp_create_user()' ); return wp_create_user($username, $password, $email); }
Version | Description |
---|---|
2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/create_user