Social Media Tags
Checks for Open Graph and Twitter Card meta tags for social sharing.
What is this check?
These are special `<meta>` tags that control how your content is displayed when it's shared on social media platforms like Facebook (Open Graph) and Twitter (Twitter Cards).
Why is it important?
They allow you to specify the title, description, and image that should appear in a social media post. This makes your shared content look much more appealing and professional.
What is the impact?
Without these tags, social platforms will try to guess which image and text to use, often with poor results. This can lead to low engagement on shared links.
Example Implementation
<!-- Open Graph (for Facebook, LinkedIn, etc.) -->
<meta property="og:title" content="Your Title">
<meta property="og:description" content="Your Description">
<meta property="og:image" content="https://example.com/image.jpg">
<meta property="og:url" content="https://your-site.com/page.html">
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Your Title">
<meta name="twitter:description" content="Your Description">
<meta name="twitter:image" content="https://your-site.com/twitter-image.png">