Jake Vanderwerf
2025-09-30 f7397ee5a65f0987024d888127c633f4a43c43c5
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
<?php
// /content/support.php
function ajv_support(): array
{
    return [
        'singular' => 'Support',
        'plural' => 'Support',
        'hide_single' => false,
        'show_feed' => false,
        'icon' => 'question',
        'rewrite' => [
            'slug' => 'support',
            'with_front' => false,
        ],
        'fields' => [
            'post_title' => [
                'type' => 'text',
                'label' => 'Title',
            ],
            'post_content' => [
                'type' => 'textarea',
                'quill' => true,
                'label' => 'Content'
            ]
        ],
    ];
}