Display tags in list without link

Question

This seems like it should be something that’s really simple to do, however it’s apparently not.

I don’t want tags to be links, but I want them to display in an unordered list, with each tag inside an <li>

get_the_tags allows you to echo them without the associated link, but I have no idea how to wrap them in li’s.

 <?php
$posttags = get_the_tags();
if ($posttags) {
  foreach($posttags as $tag) {
    echo $tag->name . ' '; 
  }
}
?>
0
andy 2 years 2020-12-31T14:10:24-05:00 0 Answers 1 views 0

Leave an answer

Browse
Browse