View difference between Paste ID: Gs0DYgyH and XQGerpgV
SHOW: | | - or go back to the newest paste.
1
add_action('wp_head', 'my_featured_fb_image');
2
3
function my_featured_fb_image($post_id = null, $size = 'full') {
4
if(tribe_is_event() && is_single() ) {$post_id = get_the_ID();
5-
$image_src = get_post_thumbnail( $post_id , $size );
5+
$image_src = wp_get_attachment_image_src(get_post_thumbnail_id( $post_id , $size ));
6
$fb_meta_tag = '';
7
if ( !empty( $image_src ) ) {
8-
$fb_meta_tag .= '<meta property="og:image" content="' . $image_src . '" >';
8+
$fb_meta_tag .= '<meta property="og:image" content="' . $image_src[0] . '" >';
9
echo $fb_meta_tag;
10
}
11
else {
12
echo '<meta property="og:image" content="http://www.sciotomile.com/wp-content/uploads/2014/02/Default_Feature_Thumbnail.png"/>';
13
}
14
}}