og:image is missing, I saw on Facebook Debugger.
Add something like this in your header.php.
<?php if (have_posts()):while(have_posts()):the_post(); endwhile; endif;?>
<!-- Facebook Opengraph -->
<meta property="og:url" content="<?php the_permalink() ?>"/>
<?php if (is_singular()) { ?>
<meta property="og:type" content="article" />
<meta property="og:title" content="<?php single_post_title(''); ?> - Folk Estrada" />
<meta property="og:description" content="<?php echo strip_tags(get_the_excerpt($post->ID)); ?> Folk Estrada" />
<meta property="og:image" content="<?php $thumb = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'large'); echo $thumb[0]; ?>" />
<?php } else { ?>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Folk Estrada" />
<meta property="og:description" content="Folk Estrada" />
<meta property="og:image" content="<?php echo get_stylesheet_directory_uri(); ?>/images/folk-estrada.png" />
<?php } ?>
Pozdrav iz BiH.