How to hide tags for published posts

  • Unknown's avatar

    Hi,

    I’d like that my entire list of tags is not displayed for all my published posts. I have seen some pieces of CSS coe or plugings that partially hide the tags specified but since I am not comfortable editing the CSS part of my theme I’d like to ask for an alternate solution please such as a plugin that does that or a non-development way.

    Thanks in advance.

    Adrian

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

  • Unknown's avatar
  • Unknown's avatar

    The site referenced above is on the Free plan, so you can’t add plugins or change the CSS. Are you by chance talking about this self-hosted site instead: https://turistinfamilie.ro/?

    If so, it is best to post in the dedicated WordPress.org Hemingway support forum.

    The differences between WordPress.com and WordPress.org.

    I am unaware of any plugins to hide tags. Theme html and CSS are theme specific and can vary greatly, so building a plugin that would work with all themes would be quite a challenge.

    It is actually quite easy in this case to hide the tags from single post pages with CSS. Go to Customize > Additional CSS, delete all the informational text in there and add the following (unless you have added custom CSS, in which case add this below all other custom CSS).

    .post-meta-bottom .post-tags {
      display: none;
    }
  • The topic ‘How to hide tags for published posts’ is closed to new replies.