comment_form_must_log_in_after

ACTION wp-includes\comment-template.php (ligne 2724) github
Fires after the HTML-formatted 'must log in after' message in the comment form.

Paramètres

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

Utilisation

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

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

Actualités

Chargement des actualités...