_e() – Display translated text.

You appear to be a bot. Output may be restricted

Description

Displays translated text.

Usage

_e( $text, $domain );

Parameters

$text
( string ) required – Text to translate.
$domain
( string ) optional default: default – Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.

Returns

void

Source

File name: wordpress/wp-includes/l10n.php
Lines:

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

 View on GitHub View on Trac