Home / Admin / Remove HealthAndBeautyBusiness Schema
Duplicate Snippet

Embed Snippet on Your Site

Remove HealthAndBeautyBusiness Schema

This snippet removes HealthAndBeautyBusiness Schema

<10
Code Preview
php
<?php
add_filter('aioseo_schema_output', 'aioseo_remove_health_and_beauty_business_schema');
function aioseo_remove_health_and_beauty_business_schema($graphs) {
    foreach ($graphs as $index => $value) {
        if (isset($value['@type']) && $value['@type'] === 'HealthAndBeautyBusiness') {
			unset($graphs[$index]);
        }
    }    
	return $graphs;
}

Comments

Add a Comment