in_admin_footer WordPress Action Hook

If you're a developer who wants to add some custom content to the WordPress admin footer, the in_admin_footer hook is for you! This hook allows you to add your own content to the footer of the WordPress admin area, which is displayed on every page in the admin area. This is a great hook to use if you want to add a custom message or link to the footer of the WordPress admin area. For example, you could use this hook to add a link to your website's support page or to a custom page that you've created for your plugin or theme.

do_action( 'in_admin_footer' ) #

Fires after the opening tag for the admin footer.


More Information

The in_admin_footer action is triggered just after the <div id="footer"> tag of the wp-admin/admin-footer.php page. This position makes it a prime location for hooking javascript that fires on document.ready for the admin page. Also good for php functions targeted at customization of the admin footer.


Top ↑

Source

File: wp-admin/admin-footer.php

View on Trac


Top ↑

Changelog

Changelog
VersionDescription
2.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.