The major AAM release is live! For questions or concerns, visit the Release Page.
Taxonomy
Less than 1 minute
RC 3
This is the material for the AAM 7.0.0-rc.3 release. Some of the features, mentioned in this content, may change before stable release.
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.