/* Open Graph Modification */
function add_facebook_open_graph_tags() {
if (is_single()) {
global $post;
if(get_the_post_thumbnail($post->ID, 'thumbnail')) {
$thumbnail_id = get_post_thumbnail_id($post->ID);
$thumbnail_object = get_post($thumbnail_id);
$image = $thumbnail_object->guid;
} else {
$image = 'ENTERIMAGEURLHERE'; // Change this to the URL of the logo you want beside your links shown on Facebook
}
?>
<meta property="og:title" content="<?php the_title(); ?> - SITETITLEHERE" />
<meta property="og:type" content="website" />
<meta property="og:image" content="<?php echo $image; ?>" />
<meta property="og:url" content="<?php the_permalink(); ?>" />
<meta property="og:description" content="<?php echo $post->post_content; ?>" />
<meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
<?php }
}
add_action('wp_head', 'add_facebook_open_graph_tags',99);
There are currently 1 users browsing this thread. (0 members and 1 guests)