if(function_exists('bcn_display')){
bcn_display();
}
?>
//Dacă categoria nu are mesaje. Probabil are alt tip de afisare
//
// Obține categoria curentă
$current_category = get_queried_object();
$tip_afisare = get_field('tip_afisare', $current_category);
switch ($tip_afisare) {
case "alphabet":
get_template_part( '/template-parts/content','alphabet');
break;
default:
get_template_part( 'template-parts/content', 'none' );
}
?>