admin_footer-press-this.php
This action is documented in wp-admin/admin-footer.php.
Description
do_action( 'admin_footer-press-this.php' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_footer-press-this.php' );
- The following example is for adding a hook callback.
- // define the admin_footer-press-this.php callback
- function action_admin_footer_press_this_php( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_footer-press-this.php', 'action_admin_footer_press_this_php', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_footer-press-this.php', 'action_admin_footer_press_this_php', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-press-this.php
- do_action( 'admin_footer-press-this.php' );