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