_WP_Dependency::set_translations
Sets the translation domain for this dependency.
Method of the class: _WP_Dependency{}
No Hooks.
Returns
true|false. False if $domain is not a string, true otherwise.
Usage
$_WP_Dependency = new _WP_Dependency(); $_WP_Dependency->set_translations( $domain, $path );
- $domain(string) (required)
- The translation textdomain.
- $path(string)
- The full file path to the directory containing translation files.
Default:''
Changelog
| Since 5.0.0 | Introduced. |
_WP_Dependency::set_translations() WP Dependency::set translations code WP 7.0
public function set_translations( $domain, $path = '' ) {
if ( ! is_string( $domain ) ) {
return false;
}
$this->textdomain = $domain;
$this->translations_path = $path;
return true;
}