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
45
46
47
<?php
// /taxonomies/body-part.php
function altr_body_part():array
{
    return [
        'singular'       => 'Location',
        'plural'         => 'Locations',
        'description'    => [
            'Location of the tattoo on body.'
        ],
        'icon'           => 'person',
        'show_feed'      => true,
        'show_directory' => true,
        'approve_new'    => false,
        'rewrite'        => [
            'slug'       => 'before-and-after/by/location',
            'with_front' => false,
            'hierarchical' => true,
        ],
        'hierarchical'   => true,
        'for_content'    => [
            'progress',
        ],
        'seo' => [
            'meta' => [
                'title' => '{{term_name}} Tattoo Removal – Before & After Results',
                'description' => 'See laser tattoo removal results on the {{term_name}}. Real before and after photos from Legacy Tattoo Removal in Edmonton.',
            ],
            'schema' => [
                'type' => 'CollectionPage',
                'name' => '{{term_name}} Laser Tattoo Removal Before & Afters',
            ],
            'archive' => [
                'type' => 'CollectionPage',
                'name' => 'Tattoo Removal on the {{term_name}} – Before & After',
            ],
        ],
        'fields'         => [
            'term_name' => [
                'label'     => 'Name',
                'type'      => 'text',
                'quickEdit' => true,
            ],
            'common'    => [ 'wiki' ]
        ]
    ];
}