in_admin_footer
Action HookDescription
Fires after the opening tag for the admin footer.Hook Information
File Location |
wp-admin/admin-footer.php
View on GitHub
|
Hook Type | Action |
Line Number | 31 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into in_admin_footer
add_action('in_admin_footer', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/admin-footer.php:31
- How this hook is used in WordPress core
<?php
26 /**
27 * Fires after the opening tag for the admin footer.
28 *
29 * @since 2.5.0
30 */
31 do_action( 'in_admin_footer' );
32 ?>
33 <p id="footer-left" class="alignleft">
34 <?php
35 $text = sprintf(
36 /* translators: %s: https://wordpress.org/ */
PHP Documentation
<?php
/**
* Fires after the opening tag for the admin footer.
*
* @since 2.5.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/admin-footer.php
Related Hooks
Related hooks will be displayed here in future updates.