WP_Translations::__construct()
Constructor.
Метод класса: WP_Translations{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_Translations = new WP_Translations(); $WP_Translations->__construct( $controller, $textdomain );
- $controller(WP_Translation_Controller) (обязательный)
- I18N controller.
- $textdomain(строка)
- Text domain.
По умолчанию: 'default'
Список изменений
С версии 6.5.0 | Введена. |
Код WP_Translations::__construct() WP Translations:: construct WP 6.6.2
public function __construct( WP_Translation_Controller $controller, string $textdomain = 'default' ) { $this->controller = $controller; $this->textdomain = $textdomain; }