Uses
Uses | Description |
---|---|
wp-includes/theme.php: get_stylesheet_directory() | Retrieves stylesheet directory path for current theme. |
wp-includes/l10n.php: load_theme_textdomain() | Load the theme’s translated strings. |
Load 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.
(string) (Required) Text domain. Unique identifier for retrieving translated strings.
(string) (Optional) Path to the directory containing the .mo file.
Default value: false
(bool) True when the theme textdomain is successfully loaded, false otherwise.
Internationalization and localization (other common spellings are internationalisation and localisation) are means of adapting computer software to different languages.
File: wp-includes/l10n.php
function load_child_theme_textdomain( $domain, $path = false ) { if ( ! $path ) { $path = get_stylesheet_directory(); } return load_theme_textdomain( $domain, $path ); }
Version | Description |
---|---|
2.9.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/load_child_theme_textdomain