Created
June 22, 2018 18:06
-
-
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.
This file contains hidden or 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
<?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