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 |
|---|---|
| 32 | |
| 33 | if ( isset( $locale ) ) { |
| 34 | /** |
| 35 | * Filters the locale ID of the WordPress installation. |
| 36 | * |
| 37 | * @since 1.5.0 |
| 38 | * |
| 39 | * @param string $locale The locale ID. |
| 40 | */ |
| 41 | return apply_filters( 'locale', $locale ); |
| 42 | } |
| 43 | |
| 44 | if ( isset( $wp_local_package ) ) { |
| 45 | $locale = $wp_local_package; |
| 46 | } |
| 47 | |
| 48 | // WPLANG was defined in wp-config. |
| 49 | if ( defined( 'WPLANG' ) ) { |
| 50 | $locale = WPLANG; |
| Line | Code |
| 66 | $locale = $db_locale; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | if ( empty( $locale ) ) { |
| 71 | $locale = 'en_US'; |
| 72 | } |
| 73 | |
| 74 | /** This filter is documented in wp-includes/l10n.php */ |
| 75 | return apply_filters( 'locale', $locale ); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Retrieves the locale of a user. |
| 80 | * |
| 81 | * If the user has a locale set to a non-empty string then it will be |
| 82 | * returned. Otherwise it returns the locale of get_locale(). |
| 83 | * |
| 84 | * @since 4.7.0 |