wpseek.com
A WordPress-centric search engine for devs and theme authors
sanitize_locale_name › WordPress Function
Since6.2.1
Deprecatedn/a
› sanitize_locale_name ( $locale_name )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Strips out all characters not allowed in a locale name.
Related Functions: sanitize_file_name, sanitize_term, sanitize_meta, sanitize_title, sanitize_category_field
Source
function sanitize_locale_name( $locale_name ) {
// Limit to A-Z, a-z, 0-9, '_', '-'.
$sanitized = preg_replace( '/[^A-Za-z0-9_-]/', '', $locale_name );
/**
* Filters a sanitized locale name string.
*
* @since 6.2.1
*
* @param string $sanitized The sanitized locale name.
* @param string $locale_name The locale name before sanitization.
*/
return apply_filters( 'sanitize_locale_name', $sanitized, $locale_name );
}