Jake Vanderwerf
2025-11-10 627056f72e761c1386e4ab4d72207008d9330a5e
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,
            ]
        ]
    ];
}