_
The WordPress Core function.
Description
_( $string );
Parameters (1)
- 0. $string
- The string.
Usage
if ( !function_exists( '_' ) ) { require_once ABSPATH . WPINC . '/compat.php'; } // The string. $string = null; // NOTICE! Understand what this does before running. $result = _($string);
Defined (1)
The function is defined in the following location(s).
- /wp-includes/compat.php
- function _($string) {
- return $string;
- }