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/age.php
| function altr_age():array
| {
| return [
| 'singular' => 'Age of Tattoo',
| 'plural' => 'Ages of Tattoo',
| 'icon' => 'cake',
| 'show_feed' => true,
| 'show_directory'=> true,
| 'rewrite' => [
| 'slug' => 'before-and-after/by/age',
| 'with_front' => false,
| 'hierarchical' => false,
| ],
| 'hierarchical' => false,
| 'for_content' => [
| 'progress',
| ],
| 'seo' => [
| 'meta' => [
| 'title' => '{{term_name}} Old Tattoo Removal – Before & After',
| 'description' => 'See laser removal results on tattoos that are {{term_name}} old. Older ink often responds differently to treatment.',
| ],
| 'schema' => [
| 'type' => 'CollectionPage',
| 'name' => '{{term_name}} Old Tattoo Removal Results',
| ],
| 'archive' => [
| 'type' => 'CollectionPage',
| 'name' => 'Removing {{term_name}} Old Tattoos – Before & After',
| ],
| ],
| 'fields' => [
| 'term_name' => [
| 'label' => 'Name',
| 'type' => 'text',
| 'subtype' => 'number',
| 'quickEdit' => true,
| ],
| 'common' => [ 'wiki' ]
| ]
| ];
| }
|
|