I get a code wordpress codex
<?php the_tags( '<ul><li>', '</li><li>', '</li></ul>' ); ?>
for show/style tags list.
But I also need to add <a href="#"></a>
My HTML is this,
<ul class="tag-list">
<li><a href="#"><i class="fa fa-check-circle"></i>fully responsive</a></li>
<li><a href="#"><i class="fa fa-check-circle"></i>localisation support</a></li>
<li><a href="#"><i class="fa fa-check-circle"></i>semantic and clean html/css</a></li>
<li><a href="#"><i class="fa fa-check-circle"></i>woocomerce support</a></li>
<li><a href="#"><i class="fa fa-check-circle"></i>custom widgets</a></li>
</ul>
Thanks, Dipto
I m not sure to understand well your question. If you need WP to generate tags list HTML like your HTML, you can do it like this :