true,
]
); ?>
name) {
case 'category':
$class = '';
$list = get_the_category_list(esc_html($separator), 0, 5, true, '', $post->ID);
$placeholder_text = __( '%s', 'aspace');
break;
case 'post_tag':
$class = '';
$list = '';
$placeholder_text = '';
break;
default:
$class = strtr('_', '-', $taxonomy->name) . '';
$list = get_the_term_list($post->ID, $taxonomy->name, 0, 5, true, '', esc_html($separator), '');
$placeholder_text = sprintf(
__( '%s:', 'aspace'),
$taxonomy->labels->name ); }
if (empty($list)) {
continue; } ?>