Format the price with a currency symbol.
Formatez le prix avec un symbole de devise.
$price, $args = array(
Sortie :
@param float $price Raw price.
@param array $args Arguments to format a price {
@return string
// Formater un prix avec la devise configurée
$prix_brut = 49.99;
$prix_formate = wc_price($prix_brut);
echo 'Prix: ' . $prix_formate; // Affiche: Prix: 49,99 €
// Avec des arguments personnalisés
echo wc_price(150, array(
'currency' => 'USD',
'decimals' => 2
));
Chargement des actualités...