Skip to content

Instantly share code, notes, and snippets.

@jstnbr
Created June 22, 2018 18:06
Show Gist options
  • Save jstnbr/b962917b6af7740d2bb3d030630e5cf3 to your computer and use it in GitHub Desktop.
Save jstnbr/b962917b6af7740d2bb3d030630e5cf3 to your computer and use it in GitHub Desktop.
Setup Open Graph Protocol data by adding this code to the document head.
<?php if ( has_post_thumbnail() ) : ?>
<meta property="og:image" content="<?php echo get_the_post_thumbnail_url( get_the_ID(), 'large' ); ?>">
<meta property="og:image:secure_url" content="https://newportshimodablackships.com/wp-content/uploads/2018/06/lanterns-background-1200x630.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="<?php the_title(); ?> - <?php bloginfo( 'name' ); ?>">
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment