get_translations_for_domain()
Return the Translations instance for a text domain.
If there isn't one, returns empty Translations instance.
Used By: translate()
1 time — 0.000001 sec (speed of light) | 50000 times — 0.43 sec (very fast) | PHP 7.2.16, WP 5.1.1
No Hooks.
Return
Translations|NOOP_Translations
. A Translations instance.
Usage
get_translations_for_domain( $domain );
- $domain(string) (required)
- Text domain. Unique identifier for retrieving translated strings.
Notes
- Global. MO[]. $l10n
Changelog
Since 2.8.0 | Introduced. |
Code of get_translations_for_domain() get translations for domain WP 5.9.3
function get_translations_for_domain( $domain ) { global $l10n; if ( isset( $l10n[ $domain ] ) || ( _load_textdomain_just_in_time( $domain ) && isset( $l10n[ $domain ] ) ) ) { return $l10n[ $domain ]; } static $noop_translations = null; if ( null === $noop_translations ) { $noop_translations = new NOOP_Translations; } return $noop_translations; }