---
title: Filtrer le schéma Job (offre d’emploi)
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-schema-job-offre-demploi/"
lang: fr-FR
updated: 2023-07-20
hook_name: seopress_pro_get_json_data_job
required_version: 4.6
---

# Filtrer le schéma Job (offre d’emploi)

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

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

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



