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
| <?php
| // /content/art.php
| function altr_faq():array
| {
| return [
| 'singular' => 'Frequently Asked Question',
| 'plural' => 'Frequently Asked Questions',
| 'dash_description' => 'Manage your answers',
| 'breadcrumb' => 'FAQ',
| 'hide_single' => true,
| 'icon' => 'question',
| 'rewrite' => [
| 'slug' => 'faq',
| 'with_front' => false,
| ],
| 'fields' => [
| 'post_title' => [
| 'type' => 'text',
| 'label' => 'Question',
| ],
| 'answer' => [
| 'type' => 'textarea',
| 'label' => 'Answer',
| 'quill' => true,
| ],
| ],
| 'single_image' => false,
| 'upload_title' => 'Upload Before & Afters',
| ];
| }
|
|