Попробуйте следующее:
if ( is_product_category() ) {
$terms = get_terms( array('taxonomy' => 'product_cat', 'parent' => get_queried_object_id() ) );
foreach ( $terms as $term ){
$term_link = get_term_link( $term, $taxonomy );
echo '<a class="ccats" href="'.$term_link.'"><span class="label">'.$term->name.'</span></a>';
}
}