Open Graph Tags Explained
Open Graph tags are `<meta property="og:*">` elements that tell Facebook and LinkedIn what title, image, and description to show when a page is shared. Without them, those platforms guess from your page title and the first large image they find.
Why it matters
Open Graph tags have no direct effect on Google rankings, but they directly control the click-through and credibility of every social share of a page. A missing or wrong og:image routinely means a blank or unrelated thumbnail on shared links, which measurably suppresses engagement in social feeds. Social referral traffic compounds over time, so investing in consistent, appealing social previews pays off in sustained discovery.
How it works
When a link is shared on Facebook, LinkedIn, Slack, or Discord, those platforms fetch the page and parse the <meta property="og:*"> tags from the head. They read og:title, og:description, og:image, and og:url to populate the preview card. If those tags are missing, the platform guesses by reading your page title, the first paragraph of text, and the first large image it finds, which often delivers a poor or confusing preview.
The image sizing and aspect ratio matters: roughly 1200x630 pixels renders cleanly across most platforms. Too small and the platform may not use it; too large and it may get cropped. Different platforms also have platform-specific tags: LinkedIn reads og: tags but prefers its own linkedin: tags when present.
What does not matter
Open Graph tags do not affect search engine indexing or rankings. They are purely a presentation layer for social platforms. You do not need to duplicate every og: tag if you already have page title and meta description; most platforms will fall back to those when og: tags are missing. However, social preview quality is worth the effort to set og:image in particular because the thumbnail is the first thing sharers see.
Code example
Here is a complete Open Graph tag set for an article:
<meta property="og:title" content="How to Use Canonical Tags for SEO" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://example.com/guides/canonical-tags" />
<meta property="og:image" content="https://example.com/og-image.jpg" />
<meta property="og:description" content="Learn how canonical tags consolidate duplicate content and protect ranking signals." />
<meta property="og:site_name" content="Example Blog" />
Without these tags, a shared link might show the page title but no image and a generic or truncated description. With them, the preview card is complete, compelling, and drive clicks.
How Scalpel shows it
The Social tab renders a live preview card built from your page's detected og: tags. If tags are missing, Scalpel flags the gap. You can see exactly how the link will look when shared on Facebook or LinkedIn before publishing.