list of tags overlay
Notice that the strip_tags() will remove all HTML tags. If you want to allow <br>, then you can add it as the second input parameter: echo strip_tags( $text, ‘<br>’ ); I want to display them like a list For that case, you could try this example: <p class=”nom”> <ul> <?php the_terms( get_the_ID(), ‘project_tag’, ‘<li>’, ‘</li><li>’, … Read more