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
| <?php
| // /taxonomies/skin-type.php
| function altr_skin_type():array
| {
| return [
| 'singular' => 'Skin Type',
| 'plural' => 'Skin Types',
| 'description' => [
| 'According to the FitzPatrick Scale (1 - 6)',
| ],
| 'icon' => 'dots-six',
| 'show_feed' => true,
| 'show_directory' => true,
| 'rewrite' => [
| 'slug' => 'before-and-after/by/skin-type',
| 'with_front' => false,
| ],
| 'for_content' => [
| 'progress'
| ],
| 'seo' => [
| 'meta' => [
| 'title' => 'Skin Type {{term_name}} Tattoo Removal – Before & After',
| 'description' => 'Laser tattoo removal results on FitzPatrick Skin Type {{term_name}}. Safe PicoWay treatment for all skin types in Edmonton.',
| ],
| 'schema' => [
| 'type' => 'CollectionPage',
| 'name' => 'Tattoo Removal on Skin Type {{term_name}}',
| ],
| 'archive' => [
| 'type' => 'CollectionPage',
| 'name' => 'FitzPatrick Skin Type {{term_name}} – Tattoo Removal Results',
| ],
| ],
| 'fields' => [
| 'term_name' => [
| 'label' => 'Name',
| 'type' => 'text',
| 'quickEdit' => true,
| ],
| 'common' => [ 'wiki' ]
| ]
| ];
| }
|
|