Uses
Uses | Description |
---|---|
wp-includes/user.php: new_user_email_content | Filters the text of the email sent when a change of user email address is attempted. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: esc_url() | Checks and cleans a URL. |
wp-includes/formatting.php: is_email() | Verifies that an email is valid. |
wp-includes/formatting.php: wp_specialchars_decode() | Converts a number of HTML entities into their special characters. |
wp-includes/pluggable.php: wp_rand() | Generates a random number. |
wp-includes/pluggable.php: wp_get_current_user() | Retrieve the current user object. |
wp-includes/pluggable.php: wp_mail() | Sends an email, similar to PHP’s mail function. |
wp-includes/link-template.php: admin_url() | Retrieves the URL to the admin area for the current site. |
wp-includes/link-template.php: home_url() | Retrieves the URL for the current site where the front end is accessible. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/user.php: email_exists() | Determines whether the given email exists. |
wp-includes/user.php: delete_user_meta() | Remove metadata matching criteria from a user. |
wp-includes/user.php: update_user_meta() | Update user meta field based on user ID. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |