Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cubehrends
Last active August 22, 2019 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cubehrends/bf3e4113dbbaf65436ba78c3262c93fd to your computer and use it in GitHub Desktop.
Save cubehrends/bf3e4113dbbaf65436ba78c3262c93fd to your computer and use it in GitHub Desktop.
<?php
/* adding og:image for Facebook shares
=============================================================== */
add_action( 'wp_head', function(){
$featured_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
if ($featured_image) {
echo '<meta property="og:image" content="'.$featured_image[0].'">';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment