apply_filters( 'salt', string $cached_salt, string $scheme )

Filters the WordPress salt.


Parameters

$cached_salt string
Cached salt for the given scheme.
$scheme string
Authentication scheme. Values include 'auth', 'secure_auth', 'logged_in', and 'nonce'.

Top ↑

Source

File: wp-includes/pluggable.php. View all references

return apply_filters( 'salt', $cached_salts[ $scheme ], $scheme );


Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.