15 lines
273 B
PHP
15 lines
273 B
PHP
|
<?php
|
||
|
/**
|
||
|
* WordPress implementation for PHP functions either missing from older PHP versions or not included by default.
|
||
|
*
|
||
|
* @package PHP
|
||
|
* @access private
|
||
|
*/
|
||
|
|
||
|
// If gettext isn't available
|
||
|
if ( !function_exists('_') ) {
|
||
|
function _($string) {
|
||
|
return $string;
|
||
|
}
|
||
|
}
|