Fires within the `<head>` section of the Site Activation page. Fires on the {@see 'wp_head'} action.
N/A
Sortie :
// Ajouter une fonction au hook action 'activate_wp_head'
add_action('activate_wp_head', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee() {
// Votre code ici
error_log('Hook activate_wp_head déclenché');
}
Chargement des actualités...