# _e()

URL: https://chugunov.pro/api-wordpress/functions/_e/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 1.2.0.

## Сигнатура

```php
_e( string $text, string $domain = 'default' )
```

## Описание

Выводит переведённый текст.

## Параметры

- `$text` `string` — обязательный. Текст для перевода.
- `$domain` `string` — необязательный, по умолчанию `'default'`. Текстовый домен. Уникальный идентификатор для получения переведённых строк.
  
  Значение по умолчанию: 'default'.

## Исходный код

Файл: `wp-includes/l10n.php:352`

```php
function _e( $text, $domain = 'default' ) {
	echo translate( $text, $domain );
}
```

## История изменений

- 1.2.0 — Introduced.

## Связанные

Использует: [`translate`](https://chugunov.pro/api-wordpress/functions/translate/).
Используется в: `WP_Widget_Block::form`, `WP_Application_Passwords_List_Table::display_tablenav`, [`core_auto_updates_settings`](https://chugunov.pro/api-wordpress/functions/core_auto_updates_settings/), [`wp_dashboard_site_health`](https://chugunov.pro/api-wordpress/functions/wp_dashboard_site_health/), `WP_Privacy_Data_Removal_Requests_List_Table::column_next_steps`, `WP_Privacy_Data_Export_Requests_List_Table::column_next_steps`, `WP_Posts_List_Table::formats_dropdown`, [`wp_dashboard_php_nag`](https://chugunov.pro/api-wordpress/functions/wp_dashboard_php_nag/), [`do_block_editor_incompatible_meta_box`](https://chugunov.pro/api-wordpress/functions/do_block_editor_incompatible_meta_box/), `WP_Privacy_Policy_Content::privacy_policy_guide`, `WP_Widget_Custom_HTML::render_control_template_scripts`, `WP_Customize_Themes_Panel::content_template`, `WP_Customize_Themes_Section::render_template`, `WP_Customize_Themes_Section::filter_bar_content_template`, [`wp_print_plugin_file_tree`](https://chugunov.pro/api-wordpress/functions/wp_print_plugin_file_tree/), [`wp_print_theme_file_tree`](https://chugunov.pro/api-wordpress/functions/wp_print_theme_file_tree/), [`wp_print_file_editor_templates`](https://chugunov.pro/api-wordpress/functions/wp_print_file_editor_templates/), `WP_Widget_Text::render_control_template_scripts`, [`wp_print_community_events_markup`](https://chugunov.pro/api-wordpress/functions/wp_print_community_events_markup/), `WP_Customize_Nav_Menus::print_post_type_container`, `WP_Customize_Nav_Menus::print_custom_links_available_menu_item`, `WP_Customize_Background_Position_Control::content_template`, [`wp_print_admin_notice_templates`](https://chugunov.pro/api-wordpress/functions/wp_print_admin_notice_templates/), [`print_embed_sharing_dialog`](https://chugunov.pro/api-wordpress/functions/print_embed_sharing_dialog/), `WP_Screen::render_meta_boxes_preferences`, `WP_Screen::render_view_mode`, `WP_Customize_Nav_Menu_Auto_Add_Control::content_template`, `WP_Customize_New_Menu_Control::render_content`, `WP_Customize_Nav_Menu_Location_Control::render_content`, `WP_Customize_Nav_Menu_Control::content_template`, `WP_Customize_Nav_Menu_Item_Control::content_template`, `WP_Customize_Panel::content_template`, `WP_Customize_Nav_Menus_Panel::content_template`, `WP_Customize_Nav_Menus::print_templates`, `WP_Customize_Nav_Menus::available_items_template`, `WP_Customize_Section::render_template`, `WP_Links_List_Table::column_visible`, `WP_MS_Sites_List_Table::column_lastupdated`, `WP_Media_List_Table::column_parent`, `WP_Media_List_Table::column_title`.

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/_e/
