Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: nonce_user_logged_out

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
2373           if ( ! $uid ) {
2374                /**
2375                 * Filters whether the user who generated the nonce is logged out.
2376                 *
2377                 * @since 3.5.0
2378                 *
2379                 * @param int        $uid    ID of the nonce-owning user.
2380                 * @param string|int $action The nonce action, or -1 if none was provided.
2381                 */
2382                $uid = apply_filters( 'nonce_user_logged_out', $uid, $action );
2383           }
2384
2385           if ( empty( $nonce ) ) {
2386                return false;
2387           }
2388
2389           $token = wp_get_session_token();
2390           $i     = wp_nonce_tick( $action );
2391
 
Line Code
2428       *
2429       * @param string|int $action Scalar value to add context to the nonce.
2430       * @return string The token.
2431       */
2432      function wp_create_nonce( $action = -1 ) {
2433           $user = wp_get_current_user();
2434           $uid  = (int) $user->ID;
2435           if ( ! $uid ) {
2436                /** This filter is documented in wp-includes/pluggable.php */
2437                $uid = apply_filters( 'nonce_user_logged_out', $uid, $action );
2438           }
2439
2440           $token = wp_get_session_token();
2441           $i     = wp_nonce_tick( $action );
2442
2443           return substr( wp_hash( $i . '|' . $action . '|' . $uid . '|' . $token, 'nonce' ), -12, 10 );
2444      }
2445 endif;
2446