admin_footer-{$GLOBALS[‘hook_suffix’]} WordPress Action Hook
The admin_footer-{$GLOBALS[‘hook_suffix’]} hook is used to add code to the footer of the administration screens. This hook is called after the default footer code has been output.
do_action( "admin_footer-{$GLOBALS['hook_suffix']}", string $hook_suffix ) #
Print scripts or data after the default footer scripts.
Description
The dynamic portion of the hook name, $GLOBALS['hook_suffix']
, refers to the global hook suffix of the current page.
Parameters
- $hook_suffix
(string)The current admin page.
Source
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |