---
title: "Filtrer la balise meta product:price:amount"
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-balise-meta-product-price-amount/"
lang: fr-FR
updated: 2023-11-09
hook_name: seopress_product_price_amount
required_version: 7.2
---

# Filtrer la balise meta product:price:amount

- **Hook name:** `seopress_product_price_amount`
- **Required version:** 7.2

```php
function sp_product_price_amount($price) {
    return $price;
}
add_filter('seopress_product_price_amount', 'sp_product_price_amount');
```

Source: [https://gist.github.com/wp-seopress/98ff55849a9219bcaa5f7bb2f5a22a3f](https://gist.github.com/wp-seopress/98ff55849a9219bcaa5f7bb2f5a22a3f)



