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
File: wp-admin/admin-footer.php
.
View all references
do_action( 'admin_footer', '' );
Changelog
Version | Description |
---|---|
1.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Actually, you are not supposed to return data, but rather echo it!
This example should work:
Example migrated from Codex:
Add HTML in the footer of your admin page
Example migrated from Codex:
Adding a JS function
Example migrated from Codex:
Set priority of your action
You can set the priority of your action by passing the third parameter. Lower the number to higher the priority.