before_woocommerce_pay

ACTION woocommerce\includes\shortcodes\class-wc-shortcode-checkout.php (ligne 83) github
Show the pay page.

Paramètres

Entrée :
N/A
Sortie :
@param int $order_id Order ID.

Utilisation

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

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

Actualités

Chargement des actualités...