wp_session_expiration_variant
The Ninja Forms wp session expiration variant hook.
Description
Parameters (1)
- 0. $24_60 (unknown) =>
24 * 60
- The 24 60.
Usage
- To run the hook, copy the example below.
- $24_60 = apply_filters( 'wp_session_expiration_variant', $24_60 );
- if ( !empty( $24_60 ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the wp_session_expiration_variant callback
- function filter_wp_session_expiration_variant( $24_60 ) {
- // make filter magic happen here...
- return $24_60;
- };
- // add the filter
- add_filter( 'wp_session_expiration_variant', 'filter_wp_session_expiration_variant', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'wp_session_expiration_variant', 'filter_wp_session_expiration_variant', 10, 1 );
Defined (2)
The filter is defined in the following location(s).
- /includes/Libraries/Session/class-wp-session.php
- $this->exp_variant = time() + (int) apply_filters( 'wp_session_expiration_variant', 24 * 60 );
- /deprecated/includes/libraries/class-wp-session.php
- $this->exp_variant = time() + (int) apply_filters( 'wp_session_expiration_variant', 24 * 60 );