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
| <?php
| // /content/art.php
| function altr_progress():array
| {
| return [
| 'singular' => 'Before & After',
| 'plural' => 'Before & Afters',
| 'dash_title' => 'Before & Afters',
| 'dash_description' => 'Manage your before and after posts',
| 'breadcrumb' => 'Before & Afters',
| 'hide_single' => false,
| 'show_feed' => true,
| 'favouritable' => false,
| 'karma' => false,
| 'icon' => 'arrows-left-right',
| 'rewrite' => [
| 'slug' => 'before-and-after',
| 'with_front' => false,
| ],
| 'fields' => [
| 'post_title' => [
| 'type' => 'text',
| 'label' => 'Title',
| ],
| 'featured_image' => [
| 'type' => 'image',
| 'label' => 'Image',
| ],
| 'gallery' => [
| 'type' => 'gallery',
| 'label' => 'Gallery',
| ],
| 'price' => [
| 'type' => 'number',
| 'label' => 'Price',
| ],
| 'post_content' => [
| 'type' => 'textarea',
| 'quill' => true,
| 'label' => 'Notes'
| ]
| ],
| 'single_image' => false,
| 'upload_title' => 'Upload Before & Afters',
| ];
| }
|
|