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 |
|---|---|
| 69 | ?> |
| 70 | <tr> |
| 71 | <th scope="row"><?php _e('Use https')?></th> |
| 72 | <td><label for="use_ssl"><input name="use_ssl" type="checkbox" id="use_ssl" value="1" <?php checked('1', $user->use_ssl); ?> /> <?php _e('Always use https when visiting the admin'); ?></label></td> |
| 73 | </tr> |
| 74 | <?php |
| 75 | } |
| 76 | |
| 77 | // Only allow super admins on multisite to edit every user. |
| 78 | if ( is_multisite() && ! current_user_can( 'manage_network_users' ) && $user_id != $current_user->ID && ! apply_filters( 'enable_edit_any_user_configuration', true ) ) |
| 79 | wp_die( __( 'You do not have permission to edit this user.' ) ); |
| 80 | |
| 81 | // Execute confirmed email change. See send_confirmation_on_profile_email(). |
| 82 | if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) { |
| 83 | $new_email = get_option( $current_user->ID . '_new_email' ); |
| 84 | if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) { |
| 85 | $user = new stdClass; |
| 86 | $user->ID = $current_user->ID; |
| 87 | $user->user_email = esc_html( trim( $new_email[ 'newemail' ] ) ); |