---
title: Filtrar esquema de revisión manual
url: "https://www.seopress.org/es/soporte/hooks/filtrar-esquema-de-revision-manual/"
lang: es
updated: 2023-07-20
hook_name: seopress_pro_get_json_data_review
required_version: 4.6
---

# Filtrar esquema de revisión manual

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

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

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



