_() │ WP 0.71

Compat function to mimic _(), an alias of gettext().

No Hooks.

Returns

string.

Usage

_( $message );
$message(string) (required)
The message being translated.

Notes

See: https://php.net/manual/en/function.gettext.php

Changelog

Since 0.71 Introduced.

_() code WP 7.1.2

function _( $message ) {
	return $message;
}