Jake Vanderwerf
2026-02-10 8c4279f9bbe7ec4681412865b999f2f4457d80ac
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
36
37
38
39
40
41
42
43
44
<?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,
        'show_directory'=> true,
        'rewrite'        => [
            'slug'         => 'before-and-after/by/goal',
            'with_front'   => false,
        ],
        'for_content'    => [
            'progress',
        ],
        'seo' => [
            'meta' => [
                'title' => '{{term_name}} – Before & After Laser Tattoo Removal',
                'description' => 'Before and after results for clients seeking {{term_name}}. See how PicoWay laser technology delivers results in Edmonton.',
            ],
            'schema' => [
                'type' => 'CollectionPage',
                'name' => '{{term_name}} Before & Afters',
            ],
            'archive' => [
                'type' => 'CollectionPage',
                'name' => '{{term_name}} – Laser Tattoo Removal Results',
            ],
        ],
        'fields'         => [
            'term_name' => [
                'label'     => 'Name',
                'type'      => 'text',
                'quickEdit' => true,
            ],
            'common'    => [ 'wiki' ]
        ]
    ];
}