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 . ' ';
}
}
?>
This would do it…
Use any WordPress or theme specific hook from your functions file.
This is my preferred solution, to wrap the request with strip_tags to retain formatting options. Here is the code:
You can also do this for categories.