nonce_life
Filters the lifespan of nonces in seconds.
Description
Parameters (1)
- 0. $day_in_seconds (int) =>
DAY_IN_SECONDS
- Lifespan of nonces in seconds. Default 86, 400 seconds, or one day.
Usage
- To run the hook, copy the example below.
- $day_in_seconds = apply_filters( 'nonce_life', $day_in_seconds );
- if ( !empty( $day_in_seconds ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the nonce_life callback
- function filter_nonce_life( $day_in_seconds ) {
- // make filter magic happen here...
- return $day_in_seconds;
- };
- // add the filter
- add_filter( 'nonce_life', 'filter_nonce_life', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'nonce_life', 'filter_nonce_life', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/pluggable.php
- $nonce_life = apply_filters( 'nonce_life', DAY_IN_SECONDS );