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
50
51
| <?php
| // /taxonomies/style.php
| function altr_style():array
| {
| return [
| 'directory' => 'Styles',
| 'description' => [
| 'From American Traditional to Japanese.'
| ],
| 'singular' => 'Style',
| 'plural' => 'Styles',
| 'show_directory' => true,
| 'approve_new' => false,
| 'icon' => 'folder',
| 'favouritable' => true,
| 'show_feed' => true,
| 'rewrite' => [
| 'slug' => 'before-and-after/by/style',
| 'with_front' => false,
| 'hierarchical' => true,
| ],
| 'hierarchical' => true,
| 'for_content' => [
| 'progress',
| ],
| 'seo' => [
| 'meta' => [
| 'title' => '{{term_name}} Tattoo Removal – Before & After Results',
| 'description' => 'See real before and after results of {{term_name}} tattoo removal with PicoWay laser technology in Edmonton.',
| ],
| 'schema' => [
| 'type' => 'CollectionPage',
| 'name' => '{{term_name}} Tattoo Removal Before & Afters',
| 'description' => '{{term_description}}',
| ],
| 'archive' => [
| 'type' => 'CollectionPage',
| 'name' => '{{term_name}} Tattoo Removal – Before & After Gallery',
| 'description' => 'Browse laser tattoo removal progress photos for {{term_name}} tattoos.',
| ],
| ],
| 'fields' => [
| 'term_name' => [
| 'label' => 'Name',
| 'type' => 'text',
| 'quickEdit' => true,
| ],
| 'common' => [ 'wiki', 'alternate_name', 'keywords' ]
| ]
| ];
| }
|
|