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

# Filtrer le schéma manuel local business

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

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

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



