Jake Vanderwerf
2026-05-11 aa974bf5954d0cca2506003a3cd9ec4eb89ed0bc
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
// /taxonomies/theme.php
 
use JVBase\registrar\Registrar;
if (!defined('ABSPATH')) {
    exit;
}
 
add_action('jvbDefineRegistrar', 'altr_theme');
add_action('jvbDefineRegistrarFields', 'altr_theme_fields');
add_action('plugins_loaded', 'altr_theme',1);
//Add fields later so we can verify taxonomies/post types exist
add_action('plugins_loaded', 'altr_theme_fields', 2);
 
add_filter('altr_ThemeSchemaDefault', 'altr_theme_schema');
add_filter('altr_ThemeMetaDefault', 'altr_theme_meta');
add_filter('altr_ThemeArchiveDefault', 'altr_theme_archive');
 
function altr_theme(){
    if (!class_exists('JVBase\registrar\Registrar')) {
        return;
    }
    $theme = Registrar::forTerm('theme', 'Theme', 'Themes')
        ->setIcon('hash')
        ->make([
            'rewrite'   => [
                'slug'          => 'before-and-after/by/themes',
                'with_front'    => false,
                'hierarchical'  => true
            ],
            'description'   => 'What makes up the tattoo, asides from style. From bees to ideas to carrots.',
            'hierarchical' => true,
            'for'    => [
                'progress',
            ],
        ])
        ->setAll([
            'show_directory',
            'show_feed',
        ]);
 
//$directory = $theme->getConfig('directory');
 
}
 
function altr_theme_fields():void
{
    if (!class_exists('JVBase\registrar\Registrar')) {
        return;
    }
    $theme = Registrar::getInstance('theme');
 
    $fields = $theme->fields();
    $fields->addField('similar', [
        'type'  => 'selector',
        'subtype'=> 'taxonomy',
        'isReference'=> true,
        'taxonomy'  => 'theme',
        'label' => 'Similar Themes'
    ]);
    $fields->addField('archive_title', [
        'type'  => 'text',
        'label' => 'Archive Title',
        'hint'  => 'If the generated title does not jive, set it here'
    ]);
    $fields->addCommon('wiki');
    $fields->addCommon('alternate_name');
    $fields->addCommon('keywords');
}
 
function altr_theme_schema():array
{
    return [
        'name'              => 'How to remove {{name}} tattoos',
        'description'       => '{{description}}'
    ];
}
 
function altr_theme_meta():array
{
    return[
        'name'              => 'How to remove {{name}} tattoos',
        'description'       => '{{description}}'
    ];
}
 
function altr_theme_archive(array $defaults):array
{
    return array_merge($defaults, [
        'name' => 'How to remove {{name}} tattoos',
    ]);
}
 
function altr_theme_reference_schema(array $defaults):array
{
    return $defaults;
}
 
//
//function altr_theme():array
//{
//    return [
//        'directory'    => 'Themes',
//        'show_directory' => true,
////        'isGrouped'     => true,
//        'description'    => [
//            'What makes up the tattoo, asides from style.',
//            'From bees to ideas to carrots.'
//        ],
//        'singular'     => 'Theme',
//        'plural'       => 'Themes',
//        'icon'         => 'hash',
//        'show_feed'    => true,
//        'rewrite'      => [
//            'slug'         => 'before-and-after/by/themes',
//            'with_front'   => false,
//            'hierarchical' => true,
//        ],
//        'hierarchical' => true,
//        'for_content'  => [
//            'progress',
//        ],
//        'seo' => [
//            'meta' => [
//                'title' => '{{term_name}} Tattoo Removal – Before & After Photos',
//                'description' => 'Before and after photos of {{term_name}} tattoo removal by laser in Edmonton.',
//            ],
//            'schema' => [
//                'type' => 'CollectionPage',
//                'name' => '{{term_name}} Tattoo Removal Before & Afters',
//                'description' => '{{term_description}}',
//            ],
//            'archive' => [
//                'type' => 'CollectionPage',
//                'name' => '{{term_name}} Tattoo Removal – Before & After Gallery',
//            ],
//        ],
//        'fields'       => [
//            'term_name'       => [
//                'label'     => 'Name',
//                'type'      => 'text',
//                'quickEdit' => true,
//            ],
//            'similar'         => [
//                'type'          => 'taxonomy',
//                'taxonomy_type' => 'reference',
//                'taxonomy'      => 'theme',
//                'label'         => 'Similar Themes',
//            ],
//            'description'     => [
//                'type'  => 'textarea',
//                'quill' => true,
//                'label' => 'Description',
//            ],
//            'archive_title'   => [
//                'type'        => 'text',
//                'label'       => 'Archive Title',
//                'description' => 'If the generated title does not jive, set it here',
//            ],
//            'common'          => [ 'wiki', 'alternate_name', 'keywords' ]
//        ]
//    ];
//}