Summery Summery
Create a hash (encrypt) of a plain text password.
Syntax Syntax
Description Description
For integration with other applications, this function can be overwritten to instead use the other package password checking algorithm.
Parameters Parameters
- $password
-
(Required) Plain text user password to hash
Return Return
(string) The hash string of the password
Source Source
File: wp-includes/pluggable.php
* * For integration with other applications, this function can be overwritten to * instead use the other package password checking algorithm. * * @since 2.5.0 * * @global PasswordHash $wp_hasher PHPass object * * @param string $password Plain text user password to hash * @return string The hash string of the password */
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |