Page 1 of 1

What is the meaning of <?php _e('Password') ?>

Posted: Tue Apr 07, 2009 1:55 pm
by pankajdeoria
Please Tell me the Detail of the Following Code

Code: Select all

<p>
        <label>[b]<?php _e('Password') ?> [/b] <br />
        <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label>
    </p>

Code: Select all

<?php _e('Password') ?>
This is the Code

What will Highlighted Code Do? Please tell me in detail about the highlighted code also.

Re: What is the meaning of <?php _e('Password') ?>

Posted: Tue Apr 07, 2009 5:28 pm
by jayshields
It's probably some form of internationalisation. So it will print the Password label in different languages. That's only a guess, very poor function naming!

You'll have to check the source where the _e function is defined.