in_admin_header

ACTION wp-admin\admin-header.php (ligne 277) github
Fires at the beginning of the content section in an admin page.

Paramètres

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

Utilisation

// Ajouter une fonction au hook action 'in_admin_header'
add_action('in_admin_header', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee() {
    // Votre code ici
    error_log('Hook in_admin_header déclenché');
}

Actualités

Chargement des actualités...