wpseo_schema_graph
Filter: wpseo_schema_graph Allows changing graph output.
Использование
add_filter( 'wpseo_schema_graph', 'wp_kama_wpseo_schema_graph_filter', 10, 2 );
/**
* Function for `wpseo_schema_graph` filter-hook.
*
* @param array $graph The graph to filter.
* @param Meta_Tags_Context $context A value object with context variables.
*
* @return array
*/
function wp_kama_wpseo_schema_graph_filter( $graph, $context ){
// filter...
return $graph;
}
- $graph(массив)
- The graph to filter.
- $context(Meta_Tags_Context)
- A value object with context variables.
Где вызывается хук
wpseo_schema_graph
yoast/src/generators/schema-generator.php 161
$graph = \apply_filters( 'wpseo_schema_graph', $graph, $context );