Changeset 60312 for trunk/src/wp-includes/compat.php
- Timestamp:
- 06/17/2025 04:14:02 PM (9 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/compat.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat.php
r59803 r60312 14 14 // If gettext isn't available. 15 15 if ( ! function_exists( '_' ) ) { 16 /** 17 * Compat function to mimic _(), an alias of gettext(). 18 * 19 * @since 0.71 20 * 21 * @see https://php.net/manual/en/function.gettext.php 22 * 23 * @param string $message The message being translated. 24 * @return string 25 */ 16 26 function _( $message ) { 17 27 return $message;
Note: See TracChangeset
for help on using the changeset viewer.