Jake Vanderwerf
2026-02-10 1e981179fc999d873000683b869aef01284827af
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
<?php
// /taxonomies/media.php
function ajv_media():array
{
    return [
        'singular'       => 'Medium',
        'plural'         => 'Media',
        'description'    => [
            '<b>What it\'s made of.</b>',
            'From clay to oil paints'
        ],
        'icon'           => 'diamonds-four',
        'show_feed'      => true,
        'show_directory' => true,
        'approve_new'    => true,
        'rewrite'        => [
            'slug'         => 'media',
            'with_front'   => false,
            'hierarchical' => true,
        ],
        'hierarchical'   => true,
        'for_content'    => [
            'art'
        ],
        'seo' => [
            'schema' => [
                'type' => 'DefinedTerm',
                'name' => '{{term_name}}',
                'description' => '{{term_description}}',
            ],
            'meta' => [
                'title' => '{{term_name}} Art | JakeVan',
                'description' => '{{term_description}}',
            ],
            'archive' => [
                'type' => 'CollectionPage',
                'name' => '{{term_name}} Artwork',
            ],
        ],
        'fields'         => [
            'term_name' => [
                'label'     => 'Name',
                'type'      => 'text',
                'quickEdit' => true,
            ],
            'common'    => [ 'wiki' ]
        ]
    ];
}