$cur_terms = get_the_terms( $post->ID, 'genres' );
if( $cur_terms && ! is_wp_error( $cur_terms ) ) {
$array = array();
foreach( $cur_terms as $cur_term ) {
$array[] = $cur_term->name;
}
$comma_separated = implode( ", ", $array );
echo '<div>Жанры:' . ' ' . $comma_separated . '</div>'; // term1, term2, term3
}
$array = array();
$cur_terms = get_the_terms( $post->ID, 'genres' );
foreach( $cur_terms as $cur_term ) {
$array[] = $cur_term->name;
}
if( ! empty( $array ) ) {
$comma_separated = implode( ", ", $array );
echo '<div>Жанры:' . ' ' . $comma_separated . '</div>'; // term1, term2, term3
}