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 |
|---|---|
| 70 | * The filter was introduced to replace the EDIT_ANY_USER constant. |
| 71 | * |
| 72 | * @since 3.0.0 |
| 73 | * |
| 74 | * @param bool $allow Whether to allow editing of any user. Default true. |
| 75 | */ |
| 76 | if ( is_multisite() |
| 77 | && ! current_user_can( 'manage_network_users' ) |
| 78 | && $user_id != $current_user->ID |
| 79 | && ! apply_filters( 'enable_edit_any_user_configuration', true ) |
| 80 | ) { |
| 81 | wp_die( __( 'Sorry, you are not allowed to edit this user.' ) ); |
| 82 | } |
| 83 | |
| 84 | // Execute confirmed email change. See send_confirmation_on_profile_email(). |
| 85 | if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) { |
| 86 | $new_email = get_user_meta( $current_user->ID, '_new_email', true ); |
| 87 | if ( $new_email && hash_equals( $new_email[ 'hash' ], $_GET[ 'newuseremail' ] ) ) { |
| 88 | $user = new stdClass; |