Early Access
og:image:height
Specifies the height of the image in pixels used when sharing the page on social media platforms like Facebook. This helps the platform allocate the correct space for the image before it's fully loaded.
Code Examples
<meta property="og:image:height" content="600" />
Recommendations
- Optimize for Faster Load TimePredefining the image dimensions lets the social platform reserve space, reducing layout shifts and potentially improving load times for shared content.
- Use with og:image:widthAlways use in conjunction with `og:image:width` for the best results, as defining both dimensions helps social platforms render images correctly without distortion.
- Don't Exceed Platform LimitsKnow the maximum dimensions allowed by each platform to prevent your image from being scaled down or cropped unexpectedly.
- Consider Aspect RatiosPlan for how your image will be cropped in feeds with different aspect ratios to ensure key elements of the image remain visible.
Related Documentation
Related Meta Tags
og:audio
Defines the audio content that will accompany your page when it is shared on social media platforms that support Open Graph.
<meta property="og:audio" content="http://example.com/birdsong.mp3">
og:description
Defines the description of your content as you want it to appear when shared on social platforms like Facebook, LinkedIn, and others that adhere to the Open Graph protocol.
<meta property="og:description" content="Discover the top 10 SEO strategies to boost your website's traffic in 2023. Click to learn more!">
og:audio:secure_url
A secure URL to an audio file to accompany your object within the Graph. Used when the standard og:audio tag URL does not support SSL.
<meta property="og:audio:secure_url" content="https://example.com/music/song.mp3">
og:audio:url
Specifies the URL of the audio content to be used as a rich object in a social graph. It is meant for integrating audio content that represents the page or is closely related to the content of the page, enhancing its representation on social media platforms.
<meta property="og:audio:url" content="https://example.com/audio.mp3">
og:audio:type
Defines the MIME type of the audio content referenced in the og:audio tag, ensuring platforms like Facebook understand how to process the linked audio file.
<meta property="og:audio:type" content="audio/mpeg">
Community