関数 _()
定義ファイル :/blog/wp-includes/compat.php
_()
__() ではない
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?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; } } |
function_exists()
function_exists — 指定した関数が定義されている場合に TRUE を返す
何もせず文字列を返す