admin_footer

Prints scripts or data before the default footer scripts.

do_action( ‘admin_footer’, string $data )

Example.

function my_admin_footer_function() {
    echo '<p>This will be inserted at the bottom of admin page</p>';
}
add_action('admin_footer', 'my_admin_footer_function');

Last updated