admin_head WordPress Action Hook
The admin_head hook is called in the admin header after the menu has been drawn. It can be used to perform custom actions in the administration interface.
do_action( 'admin_head' ) #
Fires in head section for all admin pages.
More Information
The common usage is to include CSS (external via <link> or inline via <style>) or JS (external and inline via <script>).
Source
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |