Add load_child_theme_textdomain() to allow child themes to have there own translation files. Fixes #11033 props load_child_theme_textdomain.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12179 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f8b7514e8c
commit
9c682f5a33
|
@ -395,6 +395,27 @@ function load_theme_textdomain($domain, $path = false) {
|
|||
return load_textdomain($domain, $mofile);
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the child themes translated strings.
|
||||
*
|
||||
* If the current locale exists as a .mo file in the child themes root directory, it
|
||||
* will be included in the translated strings by the $domain.
|
||||
*
|
||||
* The .mo files must be named based on the locale exactly.
|
||||
*
|
||||
* @since 2.9.0
|
||||
*
|
||||
* @param string $domain Unique identifier for retrieving translated strings
|
||||
*/
|
||||
function load_child_theme_textdomain($domain, $path = false) {
|
||||
$locale = get_locale();
|
||||
|
||||
$path = ( empty( $path ) ) ? get_stylesheet_directory() : $path;
|
||||
|
||||
$mofile = "$path/$locale.mo";
|
||||
return load_textdomain($domain, $mofile);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Translations instance for a domain. If there isn't one,
|
||||
* returns empty Translations instance.
|
||||
|
|
Loading…
Reference in New Issue