Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_refresh_nonces

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

Line Code
2685      } else {
2686           $screen_id = 'front';
2687      }
2688
2689      if ( ! empty( $_POST['data'] ) ) {
2690           $data = wp_unslash( (array) $_POST['data'] );
2691      }
2692
2693      if ( 1 !== $nonce_state ) {
2694           $response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id );
2695
2696           if ( false === $nonce_state ) {
2697                // User is logged in but nonces have expired.
2698                $response['nonces_expired'] = true;
2699                wp_send_json( $response );
2700           }
2701      }
2702
2703      if ( ! empty( $data ) ) {