попробуйте это ...
$origins = get_term_meta( $tagid, 'origin_s', false ); ?>
<div class="mt15 ingredient-center-icon">
//check if array has any items
<?php if ( !empty( $origins ) ) : ?>
<ul>
<?php foreach ( $origins as $origin ) : ?>
<li><?php echo do_shortcode( $origin ); ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>