| | |
| | | private function getHomeSchema():array |
| | | { |
| | | // Main dataset schema for homepage |
| | | $schema = [ |
| | | '@type' => 'WebPage', |
| | | '@id' => get_home_url() . '/#webpage', |
| | | 'url' => get_home_url(), |
| | | 'name' => get_bloginfo('name') . ' | Edmonton\'s Best Tattoo Artists', |
| | | 'description' => 'Discover Edmonton\'s top tattoo artists, shops, and styles. Your comprehensive guide to Edmonton\'s tattoo scene.', |
| | | 'isPartOf' => [ |
| | | '@id' => get_home_url() . '/#website' |
| | | ], |
| | | 'about' => [ |
| | | '@type' => 'Dataset', |
| | | 'name' => 'Edmonton Tattoo Artist Directory', |
| | | 'description' => 'Comprehensive directory of professional tattoo artists in Edmonton, Alberta', |
| | | 'creator' => [ |
| | | '@id' => 'https://legacytattooremoval.ca/#organization' |
| | | ], |
| | | 'publisher' => [ |
| | | '@id' => 'https://legacytattooremoval.ca/#organization' |
| | | ] |
| | | ], |
| | | ]; |
| | | |
| | | return $schema; |
| | | return [ |
| | | '@type' => 'WebPage', |
| | | '@id' => get_home_url() . '/#webpage', |
| | | 'url' => get_home_url(), |
| | | 'name' => get_bloginfo('name') . ' | Edmonton\'s Best Tattoo Artists', |
| | | 'description' => 'Discover Edmonton\'s top tattoo artists, shops, and styles. Your comprehensive guide to Edmonton\'s tattoo scene.', |
| | | 'isPartOf' => [ |
| | | '@id' => get_home_url() . '/#website' |
| | | ], |
| | | 'about' => [ |
| | | '@type' => 'Dataset', |
| | | 'name' => 'Edmonton Tattoo Artist Directory', |
| | | 'description' => 'Comprehensive directory of professional tattoo artists in Edmonton, Alberta', |
| | | 'creator' => [ |
| | | '@id' => 'https://legacytattooremoval.ca/#organization' |
| | | ], |
| | | 'publisher' => [ |
| | | '@id' => 'https://legacytattooremoval.ca/#organization' |
| | | ] |
| | | ], |
| | | ]; |
| | | } |
| | | |
| | | /** |