<?php while ( $custom_query->have_posts() ) : $custom_query->the_post(); ?>
<?php
foreach((get_the_category()) as $category) {
//si las tienes anidadas, y quieres esconder el padre puedes usar un if
if($category->cat_name != ‘Padre’){
echo ‘<span>’.$category->cat_name .'</span>’;
}
}
?>
<?php endwhile; ?>
0 Reviews