Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: show_password_fields

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
418      <tr class="form-field form-required">
419           <th scope="row"><label for="email"><?php _e('E-mail (required)') ?></label></th>
420           <td><input name="email" type="text" id="email" value="<?php echo $new_user_email; ?>" /></td>
421      </tr>
422      <tr class="form-field">
423           <th scope="row"><label for="url"><?php _e('Website') ?></label></th>
424           <td><input name="url" type="text" id="url" value="<?php echo $new_user_uri; ?>" /></td>
425      </tr>
426
427 <?php if ( apply_filters('show_password_fields', true) ) : ?>
428      <tr class="form-field form-required">
429           <th scope="row"><label for="pass1"><?php _e('Password (twice)') ?> </label></th>
430           <td><input name="pass1" type="password" id="pass1" />
431           <br />
432           <input name="pass2" type="password" id="pass2" /></td>
433      </tr>
434 <?php endif; ?>
435
436      <tr class="form-field">