<?php if( empty($imgsize)){ $imgsize = 'pbmit-img-720x470'; } ?>
<div class="post-item">
<div class="pbminfotech-box-content">
<div class="pbmit-featured-container">
<?php pbmit_get_featured_data( array( 'featured_img_only' => true, 'size' => esc_attr($imgsize) ) ); ?>
<a class="pbmit-link" href="<?php the_permalink(); ?>"></a>
</div>
<div class="pbmit-content-wrapper">
<div class="pbmit-meta-category-wrapper pbmit-meta-line">
<div class="pbmit-meta-category"><?php echo get_the_category_list( ',' ); ?></div>
</div>
<h3 class="pbmit-post-title"><a href="<?php the_permalink(); ?>"><?php echo get_the_title(); ?></a></h3>
<div class="pbminfotech-box-desc">
<?php
$limit = pbmit_get_base_option('blog-element-limit');
$limit_switch = pbmit_get_base_option('blog-element-limit-switch');
if ( has_excerpt() ){
the_excerpt();
} else if( $limit>0 && $limit_switch=='1' ){
$content = get_the_content('',FALSE,'');
$content = wp_strip_all_tags($content);
$content = strip_shortcodes($content);
echo pbmit_esc_kses( wp_trim_words($content, $limit) );
} else {
the_content( '' );
}
?>
</div>
</div>
</div>
</div>