admin_footer WordPress Action Hook
The admin_footer hook is a great way to add extra content to the footer of your WordPress admin pages. This is perfect for customizing your admin area with links, information, or anything else you might want to include.
do_action( 'admin_footer', string $data ) #
Prints scripts or data before the default footer scripts.
Parameters
- $data
(string)The data to print.
More Information
The admin_footer
action is triggered just after closing the <div id=”wpfooter”> tag and right before admin_print_footer_scripts
action call of the admin-footer.php
page.
This hook is for admin only and can’t be used to add anything on the front end.
Source
Changelog
Version | Description |
---|---|
1.2.0 | Introduced. |