• Hello!

    I’ve a tag called “featured”. I would like it to be functional as a taxonomy tag but I want it to be hidden from being visible in any place where tags are seen.

    How can I exclude this tag from being displayed anywhere on the site?

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’d like to do the same, any luck?

    Depending on the theme, for example this TwentySixteen demo site here https://twentysixteendemo.wordpress.com/ , this Custom CSS code will hide the tag archive link named “beautiful”

    .tags-links a[rel="tag"][href*="tag/beautiful"] {
    	 display: none;
    }

    or just this would work too

    .tags-links a[href*="tag/beautiful"] {
    	 display: none;
    }

    and this will display:none the tag listing page (archive)

    .archive.tag-beautiful .site-main {
    	 display: none;
    }

    These are examples to hide visually the tag name “beautiful”, hiding it visually is done via CSS but the source code will still output normally, just so you know that if someone views source it’s still there to see.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide a specific tag name everwhere on site’ is closed to new replies.