$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(', ').'
';
}
$news_item .= '
'.$featured_image.'
'.avata_get_excerpt($excerpt_length).'
'.avata_posted_on().'
';
$m = $j+1;
if( $m % $columns == 0 ){
$news_str .= '
';
$news_item = '';
}
$j++;
endwhile;
endif;
if( $news_item != '' ){
$news_str .= '
';
}
// Reset Query
wp_reset_postdata();
echo $news_str;
?>