---
title: Filtrer le schéma manuel produit
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-schema-manuel-produit/"
lang: fr-FR
updated: 2023-07-20
hook_name: seopress_pro_get_json_data_product
required_version: 4.6
---

# Filtrer le schéma manuel produit

- **Hook name:** `seopress_pro_get_json_data_product`
- **Required version:** 4.6

```php
function sp_pro_get_json_data_product($jsonld, $context) {
	//$jsonld returns the schema as an array
	//$context returns the context as an array, use this to apply conditions
	
	//do your stuff
	
	return $jsonld;
}
add_filter('seopress_pro_get_json_data_product','sp_pro_get_json_data_product', 10, 2);
```

Source: [https://gist.github.com/wp-seopress/1a225c6350f76505b1cb0f005e0eb44b](https://gist.github.com/wp-seopress/1a225c6350f76505b1cb0f005e0eb44b)



