Jake Vanderwerf
2025-12-23 76d68c97f572120dc75d0501cc82acf4022d6b33
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/goal.php
function altr_goal():array
{
    return [
        'singular'       => 'Goal',
        'plural'         => 'Goals',
        'icon'           => 'crosshair',
        'description'    => [
            'Complete tattoo removal or fading for a cover up tattoo (or unknown)'
        ],
        'show_feed'      => true,
        'rewrite'        => [
            'slug'         => 'before-and-after/by/goal',
            'with_front'   => false,
        ],
        'for_content'    => [
            'progress',
        ],
        'fields'         => [
            'term_name' => [
                'label'     => 'Name',
                'type'      => 'text',
                'quickEdit' => true,
            ],
            'common'    => [ 'wiki' ]
        ]
    ];
}