Uses
Uses | Description |
---|---|
wp-includes/l10n.php: restore_previous_locale() | Restores the translations according to the previous locale. |
wp-includes/l10n.php: switch_to_locale() | Switches the translations according to the given locale. |
wp-includes/l10n.php: get_user_locale() | Retrieves the locale of a user. |
wp-includes/user.php: send_email_change_email | Filters whether to send the email change email. |
wp-includes/user.php: password_change_email | Filters the contents of the email sent when the user’s password is changed. |
wp-includes/user.php: email_change_email | Filters the contents of the email sent when the user’s email is changed. |
wp-includes/user.php: send_password_change_email | Filters whether to send the password change email. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: wp_specialchars_decode() | Converts a number of HTML entities into their special characters. |
wp-includes/pluggable.php: wp_hash_password() | Create a hash (encrypt) of a plain text password. |
wp-includes/pluggable.php: wp_clear_auth_cookie() | Removes all of the cookies associated with authentication. |
wp-includes/pluggable.php: wp_parse_auth_cookie() | Parses a cookie into its components. |
wp-includes/pluggable.php: wp_set_auth_cookie() | Sets the authentication cookies based on user ID. |
wp-includes/pluggable.php: auth_cookie_expiration | Filters the duration of the authentication cookie expiration period. |
wp-includes/pluggable.php: get_userdata() | Retrieve user info by user ID. |
wp-includes/pluggable.php: wp_mail() | Sends an email, similar to PHP’s mail function. |
wp-includes/pluggable.php: wp_get_current_user() | Retrieve the current user object. |
wp-includes/functions.php: add_magic_quotes() | Walks the array while sanitizing the contents. |
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: _get_additional_user_keys() | Returns a list of meta keys to be (maybe) populated in wp_update_user(). |
wp-includes/user.php: clean_user_cache() | Clean all user caches |
wp-includes/user.php: wp_insert_user() | Insert a user into the database. |
wp-includes/user.php: get_user_meta() | Retrieve user meta field for a user. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |