# Tags which only staff can use!

**URL:** https://meta.discourse.org/t/tags-which-only-staff-can-use/121797
**Category:** Support
**Created:** [7월 1, 2019, 2:34오후 UTC](https://meta.discourse.org/t/tags-which-only-staff-can-use/121797 "2019-07-01T14:34:37Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Expy](https://avatars.discourse-cdn.com/v4/letter/e/d9b06d/32.png) [@Expy](https://meta.discourse.org/u/Expy)
#### Post date: [7월 1, 2019, 2:34오후 UTC](https://meta.discourse.org/t/tags-which-only-staff-can-use/121797/1 "2019-07-01T14:34:38Z")

</div>

I want to create/reserve the tag “feature” to be used only for stuff member.  
Is that possible?

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [7월 1, 2019, 2:52오후 UTC](https://meta.discourse.org/t/tags-which-only-staff-can-use/121797/2 "2019-07-01T14:52:46Z")

</div>

Yes, there are settings `admin > settings` called `min trust level to tag topics` and `min trust to create tag` that can be set to staff.

You can also choose to hide tags from normal users as well, to do this you can either create staff-only tag groups (from your `/tags` page) or hide all tags from non-staff members with CSS… something like

```css
body:not(.staff) {
  a.discourse-tag {
    display: none;
  }
}

```

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [12월 21, 2022, 2:30오후 UTC](https://meta.discourse.org/t/tags-which-only-staff-can-use/121797/4 "2022-12-21T14:30:52Z")

</div>


