WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
1881 | /** |
1882 | * Filter the WordPress salt. |
1883 | * |
1884 | * @since 2.5.0 |
1885 | * |
1886 | * @param string $cached_salt Cached salt for the given scheme. |
1887 | * @param string $scheme Authentication scheme. Values include 'auth', |
1888 | * 'secure_auth', 'logged_in', and 'nonce'. |
1889 | */ |
1890 | return apply_filters( 'salt', $cached_salts[ $scheme ], $scheme ); |
1891 | } |
1892 |
|
1893 | static $duplicated_keys; |
1894 | if ( null === $duplicated_keys ) { |
1895 | $duplicated_keys = array( 'put your unique phrase here' => true ); |
1896 | foreach ( array( 'AUTH', 'SECURE_AUTH', 'LOGGED_IN', 'NONCE', 'SECRET' ) as $first ) { |
1897 | foreach ( array( 'KEY', 'SALT' ) as $second ) { |
1898 | if ( ! defined( "{$first}_{$second}" ) ) { |
1899 | continue; |
Line | Code |
1936 | update_site_option( 'secret_key', $values['key'] ); |
1937 | } |
1938 | } |
1939 | $values['salt'] = hash_hmac( 'md5', $scheme, $values['key'] ); |
1940 | } |
1941 |
|
1942 | $cached_salts[ $scheme ] = $values['key'] . $values['salt']; |
1943 |
|
1944 | /** This filter is documented in wp-includes/pluggable.php */ |
1945 | return apply_filters( 'salt', $cached_salts[ $scheme ], $scheme ); |
1946 | } |
1947 | endif; |
1948 |
|
1949 | if ( !function_exists('wp_hash') ) : |
1950 | /** |
1951 | * Get hash of given string. |
1952 | * |
1953 | * @since 2.0.3 |
1954 | * |