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
| <?php
| // /taxonomies/style.php
| function altr_style():array
| {
| return [
| 'directory' => 'Styles',
| 'description' => [
| 'From American Traditional to Japanese.'
| ],
| 'singular' => 'Style',
| 'plural' => 'Styles',
| 'show_directory' => true,
| 'approve_new' => false,
| 'icon' => 'folder',
| 'favouritable' => true,
| 'show_feed' => true,
| 'rewrite' => [
| 'slug' => 'style',
| 'with_front' => false,
| 'hierarchical' => true,
| ],
| 'hierarchical' => true,
| 'for_content' => [
| 'progress',
| ],
| 'fields' => [
| 'term_name' => [
| 'label' => 'Name',
| 'type' => 'text',
| 'quickEdit' => true,
| ],
| 'common' => [ 'wiki', 'alternate_name', 'keywords' ]
| ]
| ];
| }
|
|