描述
地址: /nv/get-taxonomies
方法: POST
说明: 读取指定文章类型下当前已注册的分类法信息
参数
post_type
(String) (Required)
文章类型
include
(Object) (Optional)
包含的分类法slug
返回
示例
发送:
{ "post_type": "article" }
返回:
[
{
"taxonomy": "category",
"post_type": "article",
"opts": {
"hierarchical": true,
"labels": {
"name": "文章分类",
"singular_name": "文章分类",
"add_new_item": "添加分类",
"edit_item": "编辑分类",
"parent_item": "父级分类",
"delete_item": "删除分类"
}
}
},
{
"taxonomy": "tag",
"post_type": "article",
"opts": {
"labels": {
"name": "文章标签",
"singular_name": "文章标签",
"add_new_item": "添加标签",
"edit_item": "编辑标签",
"delete_item": "删除标签"
}
}
}
]