/** * Facebook Thumb Fixer */ add_action('wp_head','fbfixthumbnail'); function fbfixthumbnail(){ global $post; //If there is a post image if (has_post_thumbnail()) { $featuredimg = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), "Full"); $result = ' '; }else{ $result=' '; } $result .= ' '; echo $result; }