Open Graph metadata
og:title
Provides the title of the Open Graph object. It is one of the four required basic properties.
Code examples
Good example
<meta property="og:title" content="Freshwater Fishing: A Beginner’s Guide">Names the topic and intended reader.
Good example
<meta property="og:title" content="Acme 4.2 Release Notes">A specific title for a product release page.
Avoid this example
<meta property="og:title" content="">An empty value does not provide the required object title.
Avoid this example
<meta property="og:title" content="Read this article now! It’s the best!">Too vague to identify the page.
Recommendations
- 01Name the Page ClearlyOpen Graph does not set a character limit, but consumers may truncate long titles.
- 02Consistency with Page TitleThe Open Graph title can differ from the HTML title, but both should describe the same page.
Related documentation
Related meta tags
og:audio
propertyProvides the URL of an audio file that accompanies the Open Graph object.
<meta property="og:audio" content="https://example.com/birdsong.mp3">An absolute, public URL to the audio file.
og:audio:secure_url
propertyProvides an alternate HTTPS URL for the audio declared by the preceding og:audio property.
<meta property="og:audio:secure_url" content="https://example.com/music/song.mp3">A valid HTTPS alternate for the audio resource.
og:audio:type
propertyProvides the MIME type of the audio resource declared by the preceding og:audio property.
<meta property="og:audio:type" content="audio/mpeg">The registered media type for MP3 audio.
og:audio:url
propertyAn alias of og:audio. It provides the URL of an audio file that accompanies the object.
<meta property="og:audio:url" content="https://example.com/audio.mp3">An absolute URL to the audio file.
og:description
propertyProvides a one or two sentence description of the Open Graph object.
<meta property="og:description" content="A practical guide to choosing and caring for indoor plants in low-light rooms.">Explains the subject in one specific sentence.