Filters a sanitized key string.
Parameters
$sanitized_key
string- Sanitized key.
$key
string- The key prior to sanitization.
Source
return apply_filters( 'sanitize_key', $sanitized_key, $key );
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
Filters a sanitized key string.
$sanitized_key
string$key
stringreturn apply_filters( 'sanitize_key', $sanitized_key, $key );
Version | Description |
---|---|
3.0.0 | Introduced. |
You must log in before being able to contribute a note or feedback.
Example Migrated from Codex:
Filtering the output
Remove dashes from the string key after sanitize_key() function has done its work (dash is allowed by sanitize_key() function).
Filtering the raw key
You can interact with the raw key as second parameter of that filter. The raw key is the exact value passed to the sanitize_key() function. You could use it to make your own sanitization of the original key.
Note: Direct filtering of the $raw_key is not recommended since if not filtered carefully or if sanitize_key() function ever gets updated, your filter may be returning a key with characters that is prohibited by sanitize_key() function.