wordpress / latest / functions / _e.html

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

Displays translated text.

Parameters

$text string Required
Text to translate.
$domain string Optional
Text domain. Unique identifier for retrieving translated strings.
Default 'default'.

Default: 'default'

Source

File: wp-includes/l10n.php. View all references

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

Uses

Uses Description

Used By

Used By Description

Changelog

Version Description
1.2.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_e