in_admin_footer action-hookWP 2.5.0

Fires after the opening tag for the admin footer.

Usage

add_action( 'in_admin_footer', 'wp_kama_in_admin_footer_action' );

/**
 * Function for `in_admin_footer` action-hook.
 * 
 * @return void
 */
function wp_kama_in_admin_footer_action(){

	// action...
}

Changelog

Since 2.5.0 Introduced.

Where the hook is called

In file: /wp-admin/admin-footer.php
in_admin_footer
wp-admin/admin-footer.php 31
do_action( 'in_admin_footer' );

Where the hook is used in WordPress

Usage not found.