Uses
Uses | Description |
---|---|
wp-includes/formatting.php: wp_unslash() | Remove slashes from a string or array of strings. |
wp-includes/pluggable.php: wp_set_auth_cookie() | Sets the authentication cookies based on user ID. |
wp-includes/pluggable.php: wp_authenticate() | Authenticate a user, confirming the login credentials are valid. |
wp-includes/load.php: is_ssl() | Determines if SSL is used. |
wp-includes/plugin.php: do_action_ref_array() | Calls the callback functions that have been added to an action hook, specifying arguments in an array. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: add_filter() | Hook a function or method to a specific filter action. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/user.php: wp_authenticate | Fires before the user is authenticated. |
wp-includes/user.php: secure_signon_cookie | Filters whether to use a secure sign-on cookie. |
wp-includes/user.php: wp_login | Fires after the user has successfully logged in. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |