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.
N/A
Sortie :
// 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é');
}
Chargement des actualités...