admin_footer-{$hook_suffix}

ACTION wp-admin\admin-footer.php (ligne 105) github
Prints scripts or data after the default footer scripts. The dynamic portion of the hook name, `$hook_suffix`, refers to the global hook suffix of the current page.

Paramètres

Entrée :
N/A
Sortie :
N/A

Utilisation

// Ajouter une fonction au hook action 'admin_footer-{$hook_suffix}'
add_action('admin_footer-{$hook_suffix}', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee() {
    // Votre code ici
    error_log('Hook admin_footer-{$hook_suffix} déclenché');
}

Actualités

Chargement des actualités...