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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
| <?php
| add_filter('jvb_schema', function($schema) {
| return array_merge($schema, [
| 'organization' => [
| 'type' => 'LocalBusiness',
| 'name' => 'JakeVan',
| 'url' => get_home_url(),
| 'description' => 'Artist. Designer. Developer. Brand Strategy. I’m a multidisciplinary Canadian artist and tech wizard in Edmonton, Alberta.',
| 'slogan' => 'Let\'s bring your idea to life.',
| 'logo' => get_theme_mod('custom_logo'),
| 'foundingDate' => '2022-02-15',
|
| 'founders' => [
| ['name' => 'Jake Vanderwerf', 'url' => 'https://jakevan.ca'],
| ],
|
| 'sameAs' => [
| [ 'url' => 'https://bsky.app/profile/jakevan.ca']
| ],
|
| // Contact
| 'telephone' => '+1-825-832-9916',
| 'email' => 'get@jakevan.ca',
|
| // Address - note the key names
| 'address' => [
| 'street' => '6551 111 St NW', // was 'street_address'
| 'city' => 'Edmonton', // was 'locality'
| 'province' => 'AB', // was 'region'
| 'postal_code' => 'T6H 4R5',
| 'country' => 'CA',
| ],
|
| // Geo - note the key names
| 'geo' => [
| 'lat' => '53.5035125', // was 'latitude'
| 'lng' => '-113.5188023', // was 'longitude'
| ],
|
| // Business details
| 'priceRange' => '$$',
| 'paymentAccepted' => ['Cash', 'Credit Card', 'Debit Card', 'E-Transfer'],
| 'currenciesAccepted' => ['CAD'],
| 'areaServed' => [
| ['name' => 'Edmonton'],
| ['name' => 'St. Albert'],
| ['name' => 'Sherwood Park'],
| ['name' => 'Leduc'],
| ['name' => 'Spruce Grove'],
| ],
|
| // Hours - note the key names
| 'openingHours' => [
| 'monday' => ['opens' => '9:00', 'closes' => '17:00'],
| 'tuesday' => ['opens' => '9:00', 'closes' => '17:00'],
| 'wednesday' => ['opens' => '9:00', 'closes' => '17:00'],
| 'thursday' => ['opens' => '9:00', 'closes' => '17:00'],
| 'friday' => ['opens' => '9:00', 'closes' => '17:00'],
| 'saturday' => ['opens' => '9:00', 'closes' => '17:00'],
| 'sunday' => ['opens' => '9:00', 'closes' => '17:00'],
| ],
|
| // Services as offer catalog
| 'hasOfferCatalog' => [
| 'source' => 'manual',
| 'manual_items' => [
| [
| 'type' => 'Product',
| 'name' => 'Sculpture',
| 'description' => 'Canadian, human made sculpture',
| ],
| [
| 'type' => 'Product',
| 'name' => 'Kinetic Sculpture',
| 'description' => 'Canadian, human made sculpture that moves!',
| ],
| [
| 'type' => 'Product',
| 'name' => 'Copper Jewellery',
| 'description' => 'Canadian, human made copper jewellery, inspired by nature.',
| ],
| [
| 'type' => 'Service',
| 'name' => 'Graphic Design',
| 'description' => 'From logos to book covers and print media',
| ],
| [
| 'type' => 'Service',
| 'name' => 'Web Development',
| 'description' => 'From custom website development to basic landing pages - I make a website for you that works while you sleep.',
| ],
| [
| 'type' => 'Service',
| 'name' => 'Content Writing',
| 'description' => 'Know what you want to say, but not how to say it? I can help!',
| ],
| [
| 'type' => 'Service',
| 'name' => 'Brand Strategy',
| 'description' => 'Whether you\'re getting started with a business plan, or wanting to take a step back to determine your best steps moving forward - I can help.',
| ],
| ]
| ],
|
| // Rating - note the structure
| // 'aggregateRating' => [
| // 'value' => 5,
| // 'count' => 103,
| // 'best' => 5,
| // 'worst' => 1,
| // ],
| ],
|
| // Website settings (optional overrides)
| 'website' => [
| 'name' => 'JakeVan',
| 'description' => 'Let\'s bring your idea to life.',
| 'inLanguage' => 'en-CA',
| 'potentialAction' => [
| [
| 'name' => 'Search',
| 'type' => 'searchAction',
| 'target' => '/?s={query}',
| ],
| [
| 'type' => 'communicateAction',
| 'name' => 'Contact Us',
| 'target' => '/contact/',
| 'description' => 'Get in touch with our team',
| ],
| ],
| ],
| ]);
| });
|
|