comment_form_top

ACTION wp-includes\comment-template.php (ligne 2741) github
Fires at the top of the comment form, inside the form tag.

Paramètres

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

Utilisation

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

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

Actualités

Chargement des actualités...