generate functionSun, 22 Jan 2023

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

add_filter('wpseo_json_ld_output','remove_wpseo_breadcrumb_list'); function remove_wpseo_breadcrumb_list($data){ if (is_front_page()) { unset($data['breadcrumb']); } return $data; }

Questions about programming?Chat with your personal AI assistant