Venčeslav OGRINC – predsednik sekcije
$categories = get_field('category');
$cats = array();
foreach($categories as $c){
$cats[] = $c->term_id;
}
$cat_posts = false;
if($categories){
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
'category__in' => $cats,
);
$cat_posts = true;
}
?>