how to add tag in custom post type in wordpress code example
Example: wp+get tags for custom post type
<?php
echo get_the_term_list( get_the_ID(), 'ecommerce_tag', '', ',' );
?>
<?php
echo get_the_term_list( get_the_ID(), 'ecommerce_tag', '', ',' );
?>