apply_filters( 'nonce_user_logged_out', int $uid, string|int $action )
- Since
- 3.5.0
Filters whether the user who generated the nonce is logged out.
Compatibility
- WordPress
- since 3.5.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$uidint- ID of the nonce-owning user.
$actionstring|int- The nonce action, or -1 if none was provided.
Where this hook fires · 2
wp-includes/pluggable.php:2382wp_verify_nonce()wp-includes/pluggable.php:2437wp_create_nonce()
Source code
* * @since 3.5.0 * * @param int $uid ID of the nonce-owning user. * @param string|int $action The nonce action, or -1 if none was provided. */ $uid = apply_filters( 'nonce_user_logged_out', $uid, $action ); } if ( empty( $nonce ) ) { return false; }Changelog
Introduced in 3.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.