Invisible tags theme 2010

  • Unknown's avatar

    Hi, I’m trying to make my tags invisible in wordpress 2010 theme. How can I do this? They are all appearing at the bottom of the post and it doesn’t look great.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello,

    One way you can do this is with a little bit of custom CSS. Assuming you have the WordPress.com Premium package you could add this snippet of CSS –

    /* removes tags, leave comment link intact */
    
    .entry-utility .cat-links,
    .entry-utility .meta-sep,
    .entry-utility .tag-links {
      display: none;
    }

    That will remove all the tags and leave the “leave a comment” link. If you want to remove everything, including the comment link, you can hide the entire section with:

    /* removes everything, including the comment link */
    .entry-utility  {
      display: none;
    }

    Relevant links –
    WordPress.com Premium Package: https://store.wordpress.com/plans/premium/
    Custom CSS: https://en.support.wordpress.com/custom-design/custom-css/

    Hope this helps!

  • The topic ‘Invisible tags theme 2010’ is closed to new replies.