[NSFW] Removing tags from post list
-
I am trying to remove all the tag links from a list of posts in a category.
I removed this script from my index.php file thinking it would do the trick, but no change:
<span class="topTags"><?php the_tags('<em>:</em>', ', ', ''); ?></span>
It was originally in this snippet:
<div class="topPost"> <?php endif; ?> <h2 class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <div class="topContent"><?php the_content('(continue reading...)'); ?></div> <span class="topComments"><?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></span> <span class="topTags"><?php the_tags('<em>:</em>', ', ', ''); ?></span> <span class="topMore"><a href="<?php the_permalink() ?>">more...</a></span> <div class="cleared"></div> </div> <!-- Closes topPost --><br/>
Example page showing lots of tag links appended to each post:
Example page NSFW!Why is this not having the desired effect? I have tried clearing all the caches.
- The topic ‘[NSFW] Removing tags from post list’ is closed to new replies.