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