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