---
title: Filtrer le schéma manuel recette
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-schema-manuel-recette/"
lang: fr-FR
updated: 2024-08-02
hook_name: seopress_pro_get_json_data_recipe
required_version: 4.6
---

# Filtrer le schéma manuel recette

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

```php
function sp_pro_get_json_data_recipe($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_recipe','sp_pro_get_json_data_recipe', 10, 2);
```

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



