woocommerce_format_price_range

FILTER woocommerce\includes\wc-formatting-functions.php (ligne 1394) github
Format a price range for display.

Paramètres

Entrée :
$price, $from, $to
Sortie :
@param  string $from Price from.
@param  string $to   Price to.
@return string

Utilisation

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

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

Actualités

Chargement des actualités...