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 |
---|---|
68 | <tr> |
69 | <th scope="row"><?php _e('Use https')?></th> |
70 | <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> |
71 | </tr> |
72 | <?php |
73 | } |
74 |
|
75 |
|
76 | // Only allow super admins on multisite to edit every user. |
77 | if ( is_multisite() && ! current_user_can( 'manage_network_users' ) && $user_id != $current_user->ID && ! apply_filters( 'enable_edit_any_user_configuration', true ) ) |
78 | wp_die( __( 'You do not have permission to edit this user.' ) ); |
79 |
|
80 | // Execute confirmed email change. See send_confirmation_on_profile_email(). |
81 | if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) { |
82 | $new_email = get_option( $current_user->ID . '_new_email' ); |
83 | if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) { |
84 | $user->ID = $current_user->ID; |
85 | $user->user_email = esc_html( trim( $new_email[ 'newemail' ] ) ); |
86 | if ( $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $current_user->user_login ) ) ) |