generate functionMon, 26 Jun 2023

php snippet to remove BreadcrumbList from showing in schema in homepage using yoast

function wpseo_remove_bcn_json($array){ unset($array['@graph'][1]); return $array; } add_filter('wpseo_schema_graph_pieces', 'wpseo_remove_bcn_json', 10, 1);

Questions about programming?Chat with your personal AI assistant