Jake Vanderwerf
2025-09-30 1027291d3af570aab2de3aeb779759b15fe3d3ec
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
<?php
// /taxonomies/target.php
function altr_age():array
{
    return [
        'singular'     => 'Age of Tattoo',
        'plural'       => 'Ages of Tattoo',
        'icon'         => 'cake',
        'show_feed'    => true,
        'rewrite'      => [
            'slug'         => 'age',
            'with_front'   => false,
            'hierarchical' => false,
        ],
        'hierarchical' => false,
        'for_content'  => [
            'progress',
        ],
        'fields'       => [
            'term_name' => [
                'label'     => 'Name',
                'type'      => 'text',
                'subtype'   => 'number',
                'quickEdit' => true,
            ],
            'common'    => [ 'wiki' ]
        ]
    ];
}