load_textdomain
load_textdomain ( $domain, $mofile, $locale = null )
Parameters:- (string) domain Text domain. Unique identifier for retrieving translated strings.
- (string) mofile Path to the .mo file.
- (string) locale Optional. Locale. Default is the current locale.
Returns:- (bool) True on success, false on failure.
Defined at:Change Log: - Introduced in WordPress: 1.5.0
- Deprecated in WordPress: —
Description
Loads a .mo file into the text domain $domain.If the text domain already exists, the translations will be merged. If both
sets have the same string, the translation from the original value will be taken.
On success, the .mo file will be placed in the $l10n global by $domain
and will be a MO object.