Format a price range for display.
$price, $from, $to
Sortie :
@param string $from Price from. @param string $to Price to. @return string
// 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;
}
Chargement des actualités...