0?12/$columns:4; $container = 'container'; if ($fullwidth=='1') $container = 'container-fluid'; if($autoheight=='1') $section_class .= ' fp-auto-height'; if( is_array($category) ) $categories = implode(',',$category); else $categories = $category; ?>

$categories, 'ignore_sticky_posts'=>1, 'posts_per_page'=>$posts_num, ); $the_query = new WP_Query( $args ); // The Loop if($the_query->have_posts()): while ( $the_query->have_posts() ) : $the_query->the_post(); $featured_image = ''; if( has_post_thumbnail() ){ $image_attributes = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), "large" ); $featured_image = '
'.get_the_category_list(', ').'
'.get_the_title().'
'; } $news_item .= '
'.$featured_image.'

'.get_the_title().'

'.avata_get_excerpt($excerpt_length).'

'; $m = $j+1; if( $m % $columns == 0 ){ $news_str .= '
'.$news_item.'
'; $news_item = ''; } $j++; endwhile; endif; if( $news_item != '' ){ $news_str .= '
'.$news_item.'
'; } // Reset Query wp_reset_postdata(); echo $news_str; ?>