aşağıdaki kod'da normalde sanatci diye bir kategoriyi seçiyor fakat ben XXX diye bir kategori açıp oraya yazı girdiğim de orada çıkmasını istiyorum. yardım edecek olursa çok teşekkür ederim.
sitenin DEMOSU BURADA
switch (xoption('sliderListType')) {
case 'random':
$artists = get_categories('taxonomy=sanatci&hide_empty=0&hierarchical=false');
shuffle($artists);
$artists = array_slice($artists, 0, xoption('sliderCount'));
break;
case 'mostsong':
$artists = get_categories('taxonomy=sanatci&hide_empty=0&hierarchical=false&number=' . xoption('sliderCount') . '&orderby=count&order=DESC');
break;
case 'lestsong':
$artists = get_categories('taxonomy=sanatci&hide_empty=0&hierarchical=false&number=' . xoption('sliderCount') . '&orderby=count&order=ASC');
break;
case 'alphabetical':
$artists = get_categories('taxonomy=sanatci&hide_empty=0&hierarchical=false&number=' . xoption('sliderCount') . '&orderby=name&order=DESC');
break;
}
$counter = 0; $slideCounter=0;
foreach ($artists as $artist) : $counter++;?>