check_admin_referer, $action, $result
check_admin_referer, $action, $result
Appears in: 7.0.3
Hook Type: action
Displaying hooks found in version: 7.0.3do_action('check_admin_referer, $action, $result') is found 1 times:
- /wp-includes/pluggable.php line 1390
* @param string $action The nonce action. * @param false|int $result False if the nonce is invalid, 1 if the nonce is valid and generated between * 0-12 hours ago, 2 if the nonce is valid and generated between 12-24 hours ago. */ do_action( 'check_admin_referer', $action, $result ); if ( ! $result && ! ( -1 === $action && str_starts_with( $referer, $adminurl ) ) ) { wp_nonce_ays( $action ); die(); }