admin_footer
do_action( ‘admin_footer’, string $data )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
do_action( ‘admin_footer’, string $data )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