wp_session_start
The Ninja Forms wp session start hook.
Description
do_action( 'wp_session_start' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_session_start' );
- The following example is for adding a hook callback.
- // define the wp_session_start callback
- function action_wp_session_start( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_session_start', 'action_wp_session_start', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_session_start', 'action_wp_session_start', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /includes/Libraries/Session/wp-session.php
- do_action( 'wp_session_start' );
- /deprecated/includes/libraries/wp-session.php
- do_action( 'wp_session_start' );