---
title: Filtrer le schéma manuel application logicielle
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-schema-manuel-application-logicielle/"
lang: fr-FR
updated: 2021-01-02
hook_name: seopress_pro_get_json_data_software_app
required_version: 4.6
deprecated: 3.7.9 - seopress_schemas_softwareapp_html
---

# Filtrer le schéma manuel application logicielle

- **Hook name:** `seopress_pro_get_json_data_software_app`
- **Required version:** 4.6
- **Deprecated since:** 3.7.9 - seopress_schemas_softwareapp_html

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

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



