Skip to content
https://macrumors.com

Content

· 5 checks — Internal links, mixed-content guards, Open Graph previews, and structured data rolled into one auditable list.
SCORE
85
GRADE
B
FIX
1
REVIEW
2
PASS
2
INFO
0
Checks
5
2 PASS 2 REVIEW 1 FIX
F
Structured Data
Action
2 JSON-LD block(s) found — issues found that may affect search visibility.
FIX
2 JSON-LD block(s) found — issues found that may affect search visibility.
Warning::
Missing or invalid @context in block #2
The @context should be "https://schema.org" for search engines to recognize the data.
Got: https://schema.org/ Expected: https://schema.org
Warning::
Missing required property "headline" for NewsArticle
The "headline" property is required for the NewsArticle schema type.
Warning::
Missing required property "author" for NewsArticle
The "author" property is required for the NewsArticle schema type.
Warning::
Missing required property "datePublished" for NewsArticle
The "datePublished" property is required for the NewsArticle schema type.
Info::
Missing recommended property "logo" for Organization
Adding "logo" can improve how search engines display your content.
Info::
Missing recommended property "image" for NewsArticle
Adding "image" can improve how search engines display your content.
Info::
Missing recommended property "publisher" for NewsArticle
Adding "publisher" can improve how search engines display your content.
Info::
Missing recommended property "dateModified" for NewsArticle
Adding "dateModified" can improve how search engines display your content.
Info::
2 JSON-LD blocks found
URL: https://schema.org/

The @context should be "https://schema.org" for search engines to recognize the data.

Expected: https://schema.org
Why this matters

JSON-LD without @context is invalid structured data — Google ignores the entire block.

Learn more

@context must be 'https://schema.org' (or the schema-specific URL). Without it, the block isn't parseable as schema.org JSON-LD and Google skips it. Most schema generators handle this; manual edits sometimes drop the field.

Source: JSON-LD spec / schema.org

The "headline" property is required for the NewsArticle schema type.

Why this matters

Schema markup missing required properties is silently rejected by Google — your structured data appears in source but never as a rich result.

Learn more

Each schema.org type has required properties (Article needs headline + author + datePublished; Product needs name + offers; etc.). Missing them means Google's rich-result eligibility check fails. The Search Console Rich Results Test surfaces specific gaps. Fix the missing property; rich results re-appear within hours.

Source: Google Search Central / schema.org

The "author" property is required for the NewsArticle schema type.

Why this matters

Schema markup missing required properties is silently rejected by Google — your structured data appears in source but never as a rich result.

Learn more

Each schema.org type has required properties (Article needs headline + author + datePublished; Product needs name + offers; etc.). Missing them means Google's rich-result eligibility check fails. The Search Console Rich Results Test surfaces specific gaps. Fix the missing property; rich results re-appear within hours.

Source: Google Search Central / schema.org

The "datePublished" property is required for the NewsArticle schema type.

Why this matters

Schema markup missing required properties is silently rejected by Google — your structured data appears in source but never as a rich result.

Learn more

Each schema.org type has required properties (Article needs headline + author + datePublished; Product needs name + offers; etc.). Missing them means Google's rich-result eligibility check fails. The Search Console Rich Results Test surfaces specific gaps. Fix the missing property; rich results re-appear within hours.

Source: Google Search Central / schema.org

Adding "logo" can improve how search engines display your content.

Why this matters

Recommended schema properties unlock richer SERP layouts — without them you get the basic rich result instead of the enhanced one.

Learn more

Recommended properties expand what Google can render. E.g., adding aggregateRating to Product unlocks star ratings; adding image to Article unlocks the image-card variant. Each recommended property is a direct SERP-real-estate gain.

Source: Google Search Central / schema.org

Adding "image" can improve how search engines display your content.

Why this matters

Recommended schema properties unlock richer SERP layouts — without them you get the basic rich result instead of the enhanced one.

Learn more

Recommended properties expand what Google can render. E.g., adding aggregateRating to Product unlocks star ratings; adding image to Article unlocks the image-card variant. Each recommended property is a direct SERP-real-estate gain.

Source: Google Search Central / schema.org

Adding "publisher" can improve how search engines display your content.

Why this matters

Recommended schema properties unlock richer SERP layouts — without them you get the basic rich result instead of the enhanced one.

Learn more

Recommended properties expand what Google can render. E.g., adding aggregateRating to Product unlocks star ratings; adding image to Article unlocks the image-card variant. Each recommended property is a direct SERP-real-estate gain.

Source: Google Search Central / schema.org

Adding "dateModified" can improve how search engines display your content.

Why this matters

Recommended schema properties unlock richer SERP layouts — without them you get the basic rich result instead of the enhanced one.

Learn more

Recommended properties expand what Google can render. E.g., adding aggregateRating to Product unlocks star ratings; adding image to Article unlocks the image-card variant. Each recommended property is a direct SERP-real-estate gain.

Source: Google Search Central / schema.org

JSON-LD Blocks

Block 1 : Organization
6 properties Valid
{
  "@context": "http://schema.org",
  "@type": "Organization",
  "name": "MacRumors.com",
  "description": "Apple News",
  "url": "https://www.macrumors.com",
  "sameAs": [
    "https://www.facebook.com/macrumors",
    "https://twitter.com/macrumors",
    "https://www.youtube.com/macrumors",
    "https://www.instagram.com/macrumors/",
    "https://www.tiktok.com/@macrumors"
  ]
}
Block 2 : NewsArticle
2 properties Valid
Missing or invalid @context
Missing required property: headline
Missing required property: author
Missing required property: datePublished
{
  "@context": "https://schema.org/",
  "@graph": [
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/apple-cal-ai-app-store-removal/"
      },
      "headline": "Apple Pulled Cal AI for Deceptive Billing Design, Not External Payments",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/8dYLgL1-TvJH873Y_8PWJkRddLc=/1600x0/article-new/2025/12/Liquid-Glass-App-Store-Feature.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T12:54:30-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple recently cracked down on Cal AI, an app owned by MyFitnessPal that tried to skirt Apple's in-app purchase rules. Apple told TechCrunch that...",
      "discussionUrl": "https://forums.macrumors.com/threads/apple-pulled-cal-ai-for-deceptive-billing-design-not-external-payments.2481315/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/apple-teases-incredible-road-map-ahead/"
      },
      "headline": "Apple Teases 'Incredible Road Map Ahead'",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/Z3T2m6iJh-7kz8kMd8wNvoE0ApY=/1600x0/article-new/2026/01/Apple-Event-Logo.jpeg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T12:10:29-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Joe Rossignol",
        "url": "https://www.macrumors.com/author/joe-rossignol/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "In an all-hands meeting with employees today, Apple's future CEO John Ternus teased an \"incredible road map ahead.\"   \"I'm not...",
      "discussionUrl": "https://forums.macrumors.com/threads/apple-teases-incredible-road-map-ahead.2481314/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/tim-cook-executive-chairman-role/"
      },
      "headline": "Tim Cook Says He's 'Healthy,' Plans to Remain at Apple 'for a Long Time'",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/m-TcPWoUZZ1Ju9ao-SEU8Uz4s4I=/1600x0/article-new/2021/10/tim-cook-macbook-pro.jpeg",
        "width": 1600,
        "height": 1067
      },
      "datePublished": "2026-04-21T11:04:54-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Tim Cook today told employees he plans to be at Apple \"for a long time\" in his new role as executive chairman. Cook shared the information in...",
      "discussionUrl": "https://forums.macrumors.com/threads/tim-cook-says-hes-healthy-plans-to-remain-at-apple-for-a-long-time.2481310/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/apple-releases-ios-26-5-public-beta-3/"
      },
      "headline": "Apple Releases New iOS 26.5, iPadOS 26.5 and macOS Tahoe 26.5 Public Betas",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/dFqZVHK39txkuWZszZ-zKFGOfik=/1600x0/article-new/2025/06/macOS-Tahoe-26-Thumb.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T10:17:43-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple today provided public beta testers with new releases of upcoming iOS 26.5, iPadOS 26.5, macOS Tahoe 26.5, watchOS 26.5, and tvOS 26.5 updates...",
      "discussionUrl": "https://forums.macrumors.com/threads/apple-releases-new-ios-26-5-ipados-26-5-and-macos-tahoe-26-5-public-betas.2481308/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/sony-wf1000xm6-vs-airpods-pro-3/"
      },
      "headline": "AirPods Pro 3 vs. Sony WF-1000XM6: Which Flagship Earbuds Should You Buy?",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/_EexnENUXrRChyJ_8aDmVKXa2f4=/1600x0/https://img.youtube.com/vi/THl9fGnQW94/maxresdefault.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T09:44:45-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Sony refreshed its earbuds earlier this year, introducing the $330 WF-1000XM6 earbuds to compete with the $249 AirPods Pro 3 that came out...",
      "discussionUrl": "https://forums.macrumors.com/threads/airpods-pro-3-vs-sony-wf-1000xm6-which-flagship-earbuds-should-you-buy.2481306/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/satechi-chargeview-140w/"
      },
      "headline": "Satechi Launches ChargeView 140W Desktop Charger",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/tt9Wo_z0ZTcg21Z0KXsNTntUOqM=/1600x0/article-new/2026/04/satechi-desktop-charger-1.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T09:00:00-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Satechi is adding to its lineup of charging solutions for Apple devices with the new ChargeView 140W Desktop Charger that\u2019s available starting today....",
      "discussionUrl": "https://forums.macrumors.com/threads/satechi-launches-chargeview-140w-desktop-charger.2481305/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/11th-gen-ipad-from-299/"
      },
      "headline": "Get Up to $52 Off the 11th Gen iPad, Available From $299 [Update: Sold Out]",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/FxWYLUJmvs9E8h0zcF6tlINW8Rk=/1600x0/article-new/2025/07/ipad-prime-day-2025.jpeg",
        "width": 1600,
        "height": 901
      },
      "datePublished": "2026-04-21T08:49:32-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Mitchel Broussard",
        "url": "https://www.macrumors.com/author/mitchel-broussard/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Amazon this week is taking up to $52 off Wi-Fi models of Apple's 11th generation iPad. Prices start at $299.00 for the 128GB Wi-Fi iPad,...",
      "discussionUrl": "https://forums.macrumors.com/threads/get-up-to-52-off-the-11th-gen-ipad-available-from-299-update-sold-out.2481304/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/yelp-ai-assistant/"
      },
      "headline": "Yelp's AI Assistant Can Now Book Restaurants, Doctors, and More",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/VBeKpInOP6lbO_Nh9B1N06K2CKU=/1600x0/article-new/2026/04/yelp-ai-assistant.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T07:51:04-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Yelp is introducing an expanded version of its Yelp Assistant, an agentic chatbot that is able to answer questions, suggest places to visit, and...",
      "discussionUrl": "https://forums.macrumors.com/threads/yelps-ai-assistant-can-now-book-restaurants-doctors-and-more.2481300/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/beats-jennie-black-solo-4/"
      },
      "headline": "Beats and JENNIE Debut Special Edition Onyx Black Solo 4 Headphones",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/wpP_uMAd9mEIKq8SvYAM4YjdtTA=/1600x0/article-new/2026/04/beats-jennie-black-solo-4-product.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T07:02:00-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Eric Slivka",
        "url": "https://www.macrumors.com/author/eric-slivka/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Following the September 2025 collaboration with South Korean singer JENNIE that saw a special edition Ruby Red version of its Solo 4 headphones sell...",
      "discussionUrl": "https://forums.macrumors.com/threads/beats-and-jennie-debut-special-edition-onyx-black-solo-4-headphones.2481297/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/beats-10-foot-usb-c-cables/"
      },
      "headline": "Beats Introduces 10-Foot USB-C to USB-C Cables",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/3LeFx6fScv2DmGI7lWZ8fZeYTcE=/1600x0/article-new/2026/04/beats-10-ft-usb-cable.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T07:00:00-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Eric Slivka",
        "url": "https://www.macrumors.com/author/eric-slivka/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Beats today announced an expansion of its cable lineup that first debuted a year ago, introducing a longer 10-foot (3-meter) option for its USB-C to...",
      "discussionUrl": "https://forums.macrumors.com/threads/beats-introduces-10-foot-usb-c-to-usb-c-cables.2481296/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/anker-earth-day-sale-2026/"
      },
      "headline": "Anker Earth Day Sale Features Up to 40% Off Popular Chargers and More",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/iV8LlWqou58IGQ0yaUmOxDmOoIM=/1600x0/article-new/2026/04/anker-earth-day.jpeg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T06:51:40-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Mitchel Broussard",
        "url": "https://www.macrumors.com/author/mitchel-broussard/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Anker is hosting a new suite of deals for Earth Day on both Amazon and Anker.com, highlighted by the new Prime 3-in-1 Wireless Charging Station for...",
      "discussionUrl": "https://forums.macrumors.com/threads/anker-earth-day-sale-features-up-to-40-off-popular-chargers-and-more.2481295/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/tim-cook-stepping-down-as-ceo-reaction/"
      },
      "headline": "Top Leaders React to Apple Announcing Tim Cook Will Step Down as CEO",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/8xOjdQDxhRSYovl79oS673OEADE=/1600x0/article-new/2026/04/Tim-Cook-Apple-Logo.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T06:42:01-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Joe Rossignol",
        "url": "https://www.macrumors.com/author/joe-rossignol/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple on Monday announced that Tim Cook will be stepping down as CEO, and some top leaders around the world have publicly commented on the news.  ...",
      "discussionUrl": "https://forums.macrumors.com/threads/top-leaders-react-to-apple-announcing-tim-cook-will-step-down-as-ceo.2481294/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/whatsapp-tests-paid-plus-sub-tier/"
      },
      "headline": "WhatsApp Testing Paid 'Plus' Subscription Tier \u2013 Here's What's Included",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/vidUYJg5x6IPyS6kgo7Voj5JaXk=/1600x0/article-new/2021/03/Whatsapp-Feature.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T06:22:16-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Tim Hardwick",
        "url": "https://www.macrumors.com/author/tim-hardwick/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "WhatsApp has started testing a paid subscription tier called WhatsApp Plus, which adds a set of personalization options on top of the standard...",
      "discussionUrl": "https://forums.macrumors.com/threads/whatsapp-testing-paid-plus-subscription-tier-\u2013-heres-whats-included.2481289/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/ternus-apple-ceo-jobs-style-decisiveness/"
      },
      "headline": "Report: Ternus to Bring Jobs-Era Decisiveness Back to Apple",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/GQMZUmrcO-Xjijt6tcs71rHYfYU=/1600x0/article-new/2025/11/Apple-John-Ternus-2019.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-21T03:51:49-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Tim Hardwick",
        "url": "https://www.macrumors.com/author/tim-hardwick/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple on Monday announced that CEO Tim Cook is stepping down as the company's chief executive officer, with hardware engineering chief John...",
      "discussionUrl": "https://forums.macrumors.com/threads/report-ternus-to-bring-jobs-era-decisiveness-back-to-apple.2481283/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/21/200mp-telephoto-iphone-lens-unlikely-before-2028/"
      },
      "headline": "200MP Telephoto iPhone Lens Unlikely to Arrive Before 2028",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/C9LuhvXceF-NiWZAZZ8TtMfhofo=/1600x0/article-new/2025/09/iphone-17-cameras-zoom.jpg",
        "width": 1600,
        "height": 901
      },
      "datePublished": "2026-04-21T02:15:58-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Tim Hardwick",
        "url": "https://www.macrumors.com/author/tim-hardwick/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple is unlikely to add a 200-megapixel telephoto camera to the iPhone before 2028, despite having already tested such a sensor in prototypes,...",
      "discussionUrl": "https://forums.macrumors.com/threads/200mp-telephoto-iphone-lens-unlikely-to-arrive-before-2028.2481281/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/20/tim-cook-community-letter/"
      },
      "headline": "Apple's Tim Cook Shares Community Letter After Announcing Plans to Step Down as CEO",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/xvlK6unnmsTWFXXVpYDe6Iyjqdw=/1600x0/article-new/2026/04/tim-cook-john-ternus-apple-ceo.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-20T13:55:55-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Current Apple CEO Tim Cook is set to leave his role on September 1, 2026, and as he prepares to step down as CEO, he has written a letter addressed...",
      "discussionUrl": "https://forums.macrumors.com/threads/apples-tim-cook-shares-community-letter-after-announcing-plans-to-step-down-as-ceo.2481261/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/20/srouji-chief-hardware-officer/"
      },
      "headline": "Johny Srouji Taking Over as Apple's Chief Hardware Officer as John Ternus Transitions to CEO",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/WLqtzeHy4npMNOH3UnUEzl4NKuY=/1600x0/article-new/2026/04/johny-srouji-apple.jpg",
        "width": 1600,
        "height": 1067
      },
      "datePublished": "2026-04-20T13:46:51-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple's Senior Vice President of Hardware Technologies Johny Srouji is set to take on an expanded role as Apple's Chief Hardware Officer as...",
      "discussionUrl": "https://forums.macrumors.com/threads/johny-srouji-taking-over-as-apples-chief-hardware-officer-as-john-ternus-transitions-to-ceo.2481260/"
    },
    {
      "@type": "NewsArticle",
      "mainEntityOfPage": {
        "@type": "WebPage",
        "@id": "https://www.macrumors.com/2026/04/20/tim-cook-stepping-down/"
      },
      "headline": "Apple CEO Tim Cook Stepping Down, John Ternus Taking Over",
      "image": {
        "@type": "ImageObject",
        "url": "https://images.macrumors.com/t/62pzITDzqL3perwNhgOz4CnHwb4=/1600x0/article-new/2025/09/Tim-Cook-Rainbow.jpg",
        "width": 1600,
        "height": 900
      },
      "datePublished": "2026-04-20T13:33:05-07:00",
      "articleSection": "Apple News",
      "inLanguage": "en-US",
      "author": {
        "@type": "Person",
        "name": "Juli Clover",
        "url": "https://www.macrumors.com/author/juli-clover/"
      },
      "publisher": {
        "@type": "Organization",
        "name": "MacRumors",
        "description": "Apple News and Apple Rumors",
        "url": "https://www.macrumors.com/",
        "logo": {
          "@type": "ImageObject",
          "url": "https://images.macrumors.com/images-new/macrumors-amp-logo.png",
          "width": 394,
          "height": 60
        }
      },
      "description": "Apple CEO Tim Cook is stepping down as Apple's chief executive officer, and hardware engineering chief John Ternus is set to take over, Apple...",
      "discussionUrl": "https://forums.macrumors.com/threads/apple-ceo-tim-cook-stepping-down-john-ternus-taking-over.2481258/"
    }
  ]
}
C
Open Graph
Action
Open Graph tags are partially configured — some improvements recommended.
REVIEW
Open Graph tags are partially configured — some improvements recommended.
Critical::
og:image is not reachable
The og:image URL could not be fetched. Social platforms won't be able to display it.
Got: https://images.macrumors.com/article-new/2021/06/macrumors-share.jpg
Warning::
Missing og:description
The og:description tag controls the description in social sharing previews.
URL: https://images.macrumors.com/article-new/2021/06/macrumors-share.jpg

The og:image URL could not be fetched. Social platforms won't be able to display it.

Why this matters

An unreachable og:image URL (404, DNS fail, slow timeout) means social platforms cache the failure and serve no image for hours.

Learn more

Social platforms (Facebook, Twitter) cache OG metadata aggressively — including failed image fetches. A momentarily-broken og:image can leave your shares imageless for hours. Test og:image URLs in Facebook's Sharing Debugger to force re-cache after fixing.

Source: Open Graph Protocol / Facebook Sharing Debugger

The og:description tag controls the description in social sharing previews.

Why this matters

No og:description means social cards either show no subtitle or scrape the first paragraph — usually unflattering.

Learn more

Without og:description, social platforms either render no subtitle or pull whatever text appears first on the page. The first paragraph is rarely written for share-card context. A purpose-written 150-200 character og:description gives a polished card.

Source: Open Graph Protocol

Preview

macrumors.com

MacRumors: Apple News and Rumors

Apple, Mac, iPhone News and Rumors

Preview quality · Twitter/X A+ · 100/100
  • twitter:card — summary_large_image
  • twitter:title — MacRumors: Apple News and Rumors
  • twitter:description — Apple, Mac, iPhone News and Rumors
  • twitter:image — https://images.macrumors.com/article-new/2021/06/macrumors-share.jpg

MACRUMORS.COM

MacRumors: Apple News and Rumors

Apple, Mac, iPhone News and Rumors

Preview quality · Facebook A+ · 95/100
  • og:title — MacRumors: Apple News and Rumors
  • og:description — falling back from <meta name=description>
  • og:image — https://images.macrumors.com/article-new/2021/06/macrumors-share.jpg
  • og:type — website
  • og:url — https://www.macrumors.com/
  • og:site_name — MacRumors
  • og:image is below recommended size (1000×536)

    → Upload an image ≥1200×630 for the large preview card

MacRumors: Apple News and Rumors

macrumors.com

Preview quality · LinkedIn A+ · 95/100
  • og:title — MacRumors: Apple News and Rumors
  • og:description — falling back from <meta name=description>
  • og:image — https://images.macrumors.com/article-new/2021/06/macrumors-share.jpg

macrumors.com

MacRumors: Apple News and Rumors

Apple, Mac, iPhone News and Rumors

Preview quality · Slack A+ · 95/100
  • og:title — MacRumors: Apple News and Rumors
  • og:description — falling back from og:description
  • og:image — https://images.macrumors.com/article-new/2021/06/macrumors-share.jpg

Social preview quality

Averaged across Twitter/X, Facebook, LinkedIn, and Slack.

A+ · 96/100
FieldTwitter/XFacebookLinkedInSlack
og:title
og:description
og:image
og:type
og:url
og:site_name
twitter:card
twitter:title
twitter:description
twitter:image
B
Brand Presence
Site-name consistency, favicon, social image, meta tags, schema, and contact signals
REVIEW

Brand Presence

Your brand name differs across channels — visitors see inconsistent identity.

B

72/100

Site name appears as

Page titlePrevious Page
og:site_nameMacRumors
twitter:site@macrumors
Organization.nameMacRumors.com

Inconsistent — names differ across channels

Brand assets

Favicon

15/15

covers multiple sizes + apple-touch-icon

Social share image

20/20

og:image + twitter:image set

Meta completeness

14/20

Organization schema

8/15

has name + url

Contact info discoverable

10/10

contact page + mailto link

Findings

  • Brand name differs across channels — users see inconsistent identity
  • Organization schema missing logo — add a logo property pointing to a square PNG
  • Consider adding contactPoint — helps appear in "contact us" rich results

How consistently your brand appears across channels — shared link previews, structured data, favicon, contact info.

A+
Mixed Content
No mixed content detected — all resources use HTTPS.
PASS
No mixed content detected — all resources use HTTPS.
Info::
No mixed content detected — all resources use HTTPS
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback