';
$exclude_cat = get_theme_mod( 'business_one_page_exclude_cat' );
if( $exclude_cat ) $exclude_cat = array_diff( array_unique( $exclude_cat ), array('') );
$blog_qry = new WP_Query( array( 'posts_per_page' => 3, 'ignore_sticky_posts' => true, 'category__not_in' => $exclude_cat ) );
if( $blog_qry->have_posts() ){
while( $blog_qry->have_posts() ){
$blog_qry->the_post();
?>
';
echo '
';
echo '
';
}