Skip to main content

Taxonomy

Vasyl MartyniukLess than 1 minute

Beta 1

This is the documentation for the AAM 7.0.0-beta.1 release. We are actively working on the documentation that may change before stable release announcement.

Syntax

Taxonomy:<taxonomy-slug>:terms

Definition

Manage access controls to terms of any given taxonomy. These controls are only designed to manage access to terms and have no effect on posts that belong to them.

{
    "Statement": {
        "Effect": "deny",
        "Resource": "Taxonomy:post_tag:terms",
        "Action": [
            "List",
            "Assign"
        ]
    }
}

The statement above hides all the post tags and does not allow users to assign any tag to posts.

The Taxonomy resource supports the same list of actions as Term resource as one additional action "Create" that manages the ability to create new terms of any given taxonomy.

{
    "Statement": {
        "Effect": "deny",
        "Resource": "Taxonomy:post_tag:terms",
        "Action": "Create"
    }
}

The above statements denies the ability to create new post tags.

Virtual Assistant