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