Replies: 0
Hello.
How do I can remove rel = “tag”?
I use this code to display taxonomy and all taxonomy links show rel”tag”.
<?php
$term_list = get_the_term_list( get_the_ID(), 'qualitys' );
if(!empty($term_list)):
?>
<li class="mr-info-quality"><span class="icon-database"></span><span>کیفیت</span>: <?php the_terms( $post->ID, 'qualitys', '', " | ", '' );?></li>
<?php
endif;
?>