after hours of research got it to actually work.. here’s the code in case it’ll be of use to anyway. or not.. whatever.. cheers! >>
function genre($atts) {
$sep = ”;
$output = ”;
foreach((get_the_category()) as $childcat) {
if (cat_is_ancestor_of(5, $childcat)) {
$url = get_category_link($childcat->cat_ID);
$output .= $sep . ” < a href= ‘$ url’ >$childcat->cat_name”;
$sep = ‘, ‘;
}
}
return $output;
}
add_shortcode(‘genre’, ‘genre’);
YOU’RE WELCOME!