1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <?php
| // /taxonomies/target.php
| function altr_person():array
| {
| return [
| 'singular' => 'Person',
| 'plural' => 'People',
| 'icon' => 'user',
| 'show_feed' => false,
| 'public' => false,
| 'show_ui' => true,
| 'hierarchical' => false,
| 'for_content' => [
| 'progress',
| ],
| 'fields' => [
| 'term_name' => [
| 'label' => 'Name',
| 'type' => 'text',
| 'quickEdit' => true,
| ]
| ]
| ];
| }
|
|