WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
308 | <h3><?php $is_profile_page? _e('About Yourself') : _e('About the user'); ?></h3> |
309 |
|
310 | <table class="form-table"> |
311 | <tr> |
312 | <th><label for="description"><?php _e('Biographical Info'); ?></label></th> |
313 | <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description ?></textarea><br /><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></td> |
314 | </tr> |
315 |
|
316 | <?php |
317 | $show_password_fields = apply_filters('show_password_fields', true); |
318 | if ( $show_password_fields ) : |
319 | ?> |
320 | <tr> |
321 | <th><label for="pass1"><?php _e('New Password'); ?></label></th> |
322 | <td><input type="password" name="pass1" id="pass1" size="16" value="" /> <?php _e("If you would like to change the password type a new one. Otherwise leave this blank."); ?><br /> |
323 | <input type="password" name="pass2" id="pass2" size="16" value="" /> <?php _e("Type your new password again."); ?><br /> |
324 | <?php if ( $is_profile_page ): ?> |
325 | <p><strong><?php _e('Password Strength'); ?></strong></p> |
326 | <div id="pass-strength-result"><?php _e('Too short'); ?></div> <?php _e('Hint: Use upper and lower case characters, numbers and symbols like !"?$%^&( in your password.'); ?> |