function wt_breadcrumbs($post_id = NULL)
 {
     if (!wt_is_enabled(get_post_meta($post_id, '_disable_breadcrumb', true), wt_get_option('general', 'disable_breadcrumb'))) {
         breadcrumbs_plus(array('prefix' => '<div class="container"><div class="row"><div class="col-xs-12 text-right"><div class="breadcrumbs">', 'suffix' => '</div></div></div></div>', 'title' => false, 'home' => __('Home', 'wt_front'), 'sep' => false, 'front_page' => false, 'bold' => false, 'blog' => __('Blog', 'wt_front'), 'echo' => true));
     }
 }
?>
 
                        <article id="post-<?php 
the_ID();
?>
" class="blogEntry wt_single wt_entry_<?php 
echo $featured_image_type;
?>
">
                            <?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
                            <?php 
        if (wt_is_enabled(get_post_meta($post->ID, '_featured_image', true), wt_get_option('blog', 'featured_image'))) {
            ?>
                            <figure>
                            <?php 
            $thumbnail_type = get_post_meta($post->ID, '_thumbnail_type', true);
            switch ($thumbnail_type) {
                case "timage":
                    echo wt_theme_generator('wt_blog_featured_image', $featured_image_type, $layout);
                    break;
                case "tvideo":
                    $video_link = get_post_meta($post->ID, '_featured_video', true);
                    echo '<div class="blog-thumbnail-video">';
                    echo wt_video_featured($video_link, $featured_image_type, $layout);
                    echo '</div>';
                    break;
                case "tplayer":