after_signup_form

ACTION wp-signup.php (ligne 1049) github
Fires after the sign-up forms, before wp_footer.

Paramètres

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

Utilisation

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

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

Actualités

Chargement des actualités...