Home/Hooks/admin_footer
ACTION

admin_footer

This action is documented in wp-admin/admin-footer.php

wp-admin/includes/template.php
Line 2222
1 Parameter
View Source

Usage

add_action( 'admin_footer', 'your_callback_function', 10, 1 );

Action Callback:

function your_callback_function( $hook_suffix ) {
    // Your code here
    
}

Parameters

$hook_suffix

Parameter 1

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.