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

# Filtrer la balise product:price:currency

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

```php
function sp_product_price_currency($currency) {
    return $currency;
}
add_filter('seopress_product_price_currency', 'sp_product_price_currency');
```

Source: [https://gist.github.com/wp-seopress/25c5195f7073fd46b13c8171956a48d8](https://gist.github.com/wp-seopress/25c5195f7073fd46b13c8171956a48d8)



