do_action( ‘admin_footer’, string $data )

Prints scripts or data before the default footer scripts.

Parameters

$datastring
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

do_action( 'admin_footer', '' );

Changelog

VersionDescription
1.2.0Introduced.

User Contributed Notes

  1. Skip to note 8 content

    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.

    <?php
    add_action('admin_footer', 'my_admin_footer_function', 100);
    function my_admin_footer_function($data) {
    	$data = '<p>This will be inserted at the bottom of admin page</p>';
    	return $data;
    }
    ?>

You must log in before being able to contribute a note or feedback.