jmartinez889
Member
Posted 6 months ago #
I'd like to hide all the tags on 1) posts I've already posted and 2) future posts. I don't want to delete the tags, but I don't want people to be able to see them. My current blog is a .wordpress.com site, but the site I'm working on is
noparticulartheme.com
Can someone advise what code I need to remove/adjust to do this, if it's even possible? I'm fairly new at this so the more specific, the better. Thanks!
You could try hiding them using CSS. Try using Firefox with the Firebug add-on for this kind of work.
http://getfirebug.com/
jmartinez889
Member
Posted 6 months ago #
I figured it out! I went to the "loop.php" file and deleted the following line of code:
<p class="entry-tags tagged"><?php the_tags( __( 'Tagged as', 'pilcrow' ).' ', ', ', '
' ); ?></p>
Thanks for the suggestion!