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 | * Filter WordPress install's locale ID. |
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 | * Retrieve the translation of $text. |
80 | * |
81 | * If there is no translation, or the text domain isn't loaded, the original text is returned. |
82 | * |
83 | * *Note:* Don't use translate() directly, use __() or related functions. |
84 | * |