Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: plugin_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

This hook occurs 2 times in this file.

Line Code
704 function load_plugin_textdomain( $domain, $deprecated = false, $plugin_rel_path = false ) {
705      /**
706       * Filters a plugin's locale.
707       *
708       * @since 3.0.0
709       *
710       * @param string $locale The plugin's current locale.
711       * @param string $domain Text domain. Unique identifier for retrieving translated strings.
712       */
713      $locale = apply_filters( 'plugin_locale', is_admin() ? get_user_locale() : get_locale(), $domain );
714
715      $mofile = $domain . '-' . $locale . '.mo';
716
717      // Try to load from the languages directory first.
718      if ( load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile ) ) {
719           return true;
720      }
721
722      if ( false !== $plugin_rel_path ) {
 
Line Code
738  * @since 4.6.0 The function now tries to load the .mo file from the languages directory first.
739  *
740  * @param string $domain             Text domain. Unique identifier for retrieving translated strings.
741  * @param string $mu_plugin_rel_path Optional. Relative to `WPMU_PLUGIN_DIR` directory in which the .mo
742  *                                   file resides. Default empty string.
743  * @return bool True when textdomain is successfully loaded, false otherwise.
744  */
745 function load_muplugin_textdomain( $domain, $mu_plugin_rel_path = '' ) {
746      /** This filter is documented in wp-includes/l10n.php */
747      $locale = apply_filters( 'plugin_locale', is_admin() ? get_user_locale() : get_locale(), $domain );
748
749      $mofile = $domain . '-' . $locale . '.mo';
750
751      // Try to load from the languages directory first.
752      if ( load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile ) ) {
753           return true;
754      }
755
756      $path = trailingslashit( WPMU_PLUGIN_DIR . '/' . ltrim( $mu_plugin_rel_path, '/' ) );