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
| <?php
| // /taxonomies/timeline.php
| function altr_timeline():array
| {
| return [
| 'singular' => 'Timeline',
| 'plural' => 'Timelines',
| 'icon' => 'hourglass',
| 'show_feed' => true,
| 'show_directory' => true,
| 'rewrite' => [
| 'slug' => 'before-and-after/by/timeline',
| 'with_front' => false,
| ],
| 'for_content' => [
| 'progress',
| ],
| 'seo' => [
| 'meta' => [
| 'title' => '{{term_name}} Between Treatments – Tattoo Removal Progress',
| 'description' => 'See how tattoos heal and fade with {{term_name}} between laser removal sessions.',
| ],
| 'schema' => [
| 'type' => 'CollectionPage',
| 'name' => '{{term_name}} Between Treatments – Progress Photos',
| ],
| 'archive' => [
| 'type' => 'CollectionPage',
| 'name' => 'Tattoo Removal with {{term_name}} Between Sessions',
| ],
| ],
| 'fields' => [
| 'term_name' => [
| 'label' => 'Name',
| 'type' => 'text',
| 'quickEdit' => true,
| ],
| 'common' => [ 'wiki' ]
| ]
| ];
| }
|
|