WP_Translation_Controller::set_locale()publicWP 6.5.0

Sets the current locale.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WP_Translation_Controller = new WP_Translation_Controller();
$WP_Translation_Controller->set_locale( $locale );
$locale(строка) (обязательный)
Locale.

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

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

Код WP_Translation_Controller::set_locale() WP 6.6.2

public function set_locale( string $locale ) {
	$this->current_locale = $locale;
}