_()
Compat function to mimic _(), an alias of gettext().
No Hooks.
Returns
String.
Usage
_( $message );
- $message(string) (required)
- The message being translated.
Notes
Changelog
| Since 0.71 | Introduced. |
_() code WP 7.0
function _( $message ) {
return $message;
}