wp_footer
The Subscribe2 wp footer hook.
Description
Parameters (1)
- 0. $array (callback) =>
array(&$this, 'add_s2_ajax')
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_footer', $array );
- The following example is for adding a hook callback.
- // define the wp_footer callback
- function action_wp_footer( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_footer', 'action_wp_footer', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_footer', 'action_wp_footer', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /classes/class-s2-core.php
- add_action('wp_footer', array(&$this, 'add_s2_ajax'));