WP_Translation_Controller::is_textdomain_loaded()publicWP 6.5.0

Determines whether translations are loaded for a given text domain.

Метод класса: WP_Translation_Controller{}

Хуков нет.

Возвращает

true|false. True if there are any loaded translations, false otherwise.

Использование

$WP_Translation_Controller = new WP_Translation_Controller();
$WP_Translation_Controller->is_textdomain_loaded( $textdomain, ?string $locale ): bool;
$textdomain(строка)
Text domain.
По умолчанию: 'default'
?string $locale **
-
По умолчанию: null

Список изменений

С версии 6.5.0 Введена.

Код WP_Translation_Controller::is_textdomain_loaded() WP 6.6.2

public function is_textdomain_loaded( string $textdomain = 'default', ?string $locale = null ): bool {
	if ( null === $locale ) {
		$locale = $this->current_locale;
	}

	return isset( $this->loaded_translations[ $locale ][ $textdomain ] ) &&
		array() !== $this->loaded_translations[ $locale ][ $textdomain ];
}