Nothing Found
It seems we can’t find what you’re looking for. Perhaps searching can help.
/** * إزالة كود BreadcrumbList المكرر والقديم من AIOSEO من جميع الصفحات */ add_filter('aioseo_schema_output', function($schema, $post_id) { foreach ($schema['@graph'] as $key => $item) { if (isset($item['@type']) && $item['@type'] === 'BreadcrumbList') { if (isset($item['itemListElement']) && is_array($item['itemListElement'])) { $isNewValidFormat = true; foreach ($item['itemListElement'] as $element) { if (!isset($element['name']) && !isset($element['item']['name'])) { $isNewValidFormat = false; break; } } if (!$isNewValidFormat) { unset($schema['@graph'][$key]); } } } } $schema['@graph'] = array_values($schema['@graph']); return $schema; }, 10, 2);