Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: theme_locale

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
999
1000      /**
1001       * Filters a theme's locale.
1002       *
1003       * @since 3.0.0
1004       *
1005       * @param string $locale The theme's current locale.
1006       * @param string $domain Text domain. Unique identifier for retrieving translated strings.
1007       */
1008      $locale = apply_filters( 'theme_locale', determine_locale(), $domain );
1009
1010      $mofile = $domain . '-' . $locale . '.mo';
1011
1012      // Try to load from the languages directory first.
1013      if ( load_textdomain( $domain, WP_LANG_DIR . '/themes/' . $mofile, $locale ) ) {
1014           return true;
1015      }
1016
1017      if ( ! $path ) {