in_admin_footer
Fires after the opening tag for the admin footer.
Description
add_action( 'in_admin_footer', $array );
Parameters (1)
- 0. $array
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'in_admin_footer', $array );
- The following example is for adding a hook callback.
- // define the in_admin_footer callback
- function action_in_admin_footer( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'in_admin_footer', 'action_in_admin_footer', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'in_admin_footer', 'action_in_admin_footer', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /inc/core/vote.php
- add_action( 'in_admin_footer', array( __CLASS__, 'message' ) );