aioseo_schema_graphs

aioseo_schema_graphs

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.2.4

apply_filters('aioseo_schema_graphs') is found 1 times:

  • /app/Common/Schema/Schema.php line 107
    			'@context' => 'https://schema.org',
    			'@graph'   => []
    		];
    
    		$graphs = apply_filters( 'aioseo_schema_graphs', array_unique( array_filter( $this->graphs ) ) );
    		foreach ( $graphs as $graph ) {
    			if ( class_exists( "\AIOSEO\Plugin\Common\Schema\Graphs\\$graph" ) ) {
    				$namespace = "\AIOSEO\Plugin\Common\Schema\Graphs\\$graph";
    
    				//if graph is actually a fully qualified class name
    				if ( class_exists( $graph ) ) {