Nombre del gancho
seopress_get_json_data_organization
Versión requerida
4.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sp_get_json_data_organization($jsonld) { | |
//$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_get_json_data_organization','sp_get_json_data_organization', 10); |