Last active
January 16, 2022 21:24
-
-
Save JeremyMorgan/5645469 to your computer and use it in GitHub Desktop.
Template for Open Graph Tags. Adding these to your pages will help you display information better on Google+, Facebook and Twitter. Just replace the values with their own.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta itemprop="name" content="[ TITLE ]" /> | |
<meta itemprop="image" content="[ LISTING IMAGE ]" /> | |
<meta itemprop="description" content="[ ARTICLE DESCRIPTION ]" /> | |
<meta name="description" content="[ ARTICLE DESCRIPTION ]" /> | |
<meta name="author" content="[ AUTHOR FULL NAME ]" /> | |
<meta property="article:author" content="[ GOOGLE+ AUTHOR URL ]" /> | |
<meta property="article:published_time" content="[ PUBLISHED TIMESTAMP ]" /> | |
<meta property="article:section" content="[ CATEGORY ]" /> | |
<meta property="og:title" content="[ TITLE ]" /> | |
<meta property="og:type" content="article" /> | |
<meta property="og:description" content="[ ARTICLE DESCRIPTION ]" /> | |
<meta property="og:image" content="[ LISTING IMAGE ]" /> | |
<meta property="og:url" content="[ CANONICAL URL OF ITEM ]" /> | |
<meta property="og:site_name" content="[ WEBSITE NAME ]" /> | |
<meta name="twitter:card" content="summary"> | |
<meta name="twitter:title" content="[ TITLE ]"> | |
<meta name="twitter:description" content="[ ARTICLE DESCRIPTION ]"> | |
<meta name="twitter:image" content="[ LISTING IMAGE ]"> | |
<meta name="twitter:url" content="[ CANONICAL URL OF ITEM ]"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment