forked from pods-framework/pods-code-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taxonomies.json
73 lines (72 loc) · 2.54 KB
/
taxonomies.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"tutorial_type": [
{
"name": "Adding Custom Fields",
"description": "Learn how to add custom fields, the different uses and options for each one.",
"slug": "adding-custom-fields"
},
{
"name": "Advanced",
"description": "These tutorials assume a stong familiarity and knowledge of WordPress and PHP",
"slug": "advanced"
},
{
"name": "Beginner",
"description": "Simple tutorials, with little to no php code involved, that show you how easy it can be to use Pods.",
"slug": "beginner"
},
{
"name": "Choosing Content Types",
"description": "Pods allows you to create or extend a variety of different content types and objects in WordPress, each with its own capabilities, advantages and disadvantages.",
"slug": "choosing-content-types"
},
{
"name": "Extending Existing Content Types",
"description": "Learn how to extend existing content types and objects like users, comments and more.",
"slug": "extending-existing-content-types"
},
{
"name": "Getting Started",
"description": "The first steps to using Pods to transform WordPress into a powerful content management system.",
"slug": "getting-started"
},
{
"name": "Media Handling With Pods",
"description": "Learn how to create fields for images, videos or other media files and output them on your site.",
"slug": "media-handling-with-pods"
},
{
"name": "Using Custom Taxonomies",
"description": "Organize your content with custom taxonomies that function like WordPress' built-in tags and categories. You can even add custom fields to them.",
"slug": "using-custom-taxonomies"
},
{
"name": "Using Pods In Themes",
"description": "Learn how to display Pods Advanced Content Types using Pods Pages.",
"slug": "using-pods-in-themes"
},
{
"name": "Using Pods Templates",
"description": "Create templates for displaying Pods custom fields using a simple templateing engine.",
"slug": "using-pods-templates"
}
],
"example_hierarchical": [
{
"name": "Root Category",
"slug": "root-category",
"children": [
{
"name" : "Child of root",
"slug" : "child-of-root",
"children": [
{
"name" : "Child of Child",
"slug" : "child-of-child"
}
]
}
]
}
]
}