admin_footer
Prints scripts or data before the default footer scripts.
Usage
add_action( 'admin_footer', 'wp_kama_admin_footer_action' );
/**
* Function for `admin_footer` action-hook.
*
* @param $string
*
* @return void
*/
function wp_kama_admin_footer_action( $string ){
// action...
}
- $string
- -
Changelog
| Since 1.2.0 | Introduced. |
Where the hook is called
wp-includes/build/pages/options-connectors/page.php 281
do_action( 'admin_footer', '' );
wp-includes/build/pages/font-library/page.php 281
do_action( 'admin_footer', '' );
wp-admin/admin-footer.php 78
do_action( 'admin_footer', '' );
wp-admin/includes/template.php 2226
do_action( 'admin_footer', $hook_suffix );
Where the hook is used in WordPress
wp-admin/edit-form-advanced.php 26
add_action( 'admin_footer', '_admin_notice_post_locked' );
wp-admin/edit-form-advanced.php 29
add_action( 'admin_footer', '_admin_notice_post_locked' );
wp-admin/edit-form-advanced.php 94
add_action( 'admin_footer', '_local_storage_notice' );
wp-admin/includes/class-wp-list-table.php 164
add_action( 'admin_footer', array( $this, '_js_vars' ) );
wp-includes/media.php 3026
add_action( 'admin_footer', 'wp_underscore_playlist_templates', 0 );
wp-includes/media.php 5143
add_action( 'admin_footer', 'wp_print_media_templates' );