woocommerce_get_checkout_url

FILTER woocommerce\includes\wc-core-functions.php (ligne 1579) github
Gets the url to the checkout page.

Paramètres

Entrée :
$checkout_url
Sortie :
@return string Url to checkout page

Utilisation

// Modifier la valeur avec le filtre 'woocommerce_get_checkout_url'
add_filter('woocommerce_get_checkout_url', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre($checkout_url) {
    // Modifier la valeur
    return $checkout_url;
}

Actualités

Chargement des actualités...