Advertisement
geminilabs

RankMath Pro LocalBusiness Schema

Nov 5th, 2023 (edited)
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. {
  2. "@context": "http://schema.org",
  3. "@type": "LocalBusiness",
  4. "name": "%title%",
  5. "alternateName": "%title%",
  6. "url": "%url%",
  7. "photo": "%post_thumbnail%",
  8. "image": "%post_thumbnail%",
  9. "publicAccess": true,
  10. "priceRange": "Free",
  11. "openingHoursSpecification": [
  12. {
  13. "@type": "OpeningHoursSpecification",
  14. "dayOfWeek": [
  15. "Monday",
  16. "Tuesday",
  17. "Wednesday",
  18. "Thursday",
  19. "Friday",
  20. "Saturday",
  21. "Sunday"
  22. ],
  23. "opens": "00:00",
  24. "closes": "23:59"
  25. }
  26. ],
  27. "address": {
  28. "@type": "PostalAddress",
  29. "streetAddress": "Street",
  30. "addressLocality": "Town",
  31. "addressRegion": "Cornwall",
  32. "postalCode": "0000 000",
  33. "addressCountry": {
  34. "@type": "Country",
  35. "name": "United Kingdom"
  36. }
  37. },
  38. "geo": {
  39. "@type": "GeoCoordinates",
  40. "latitude": "0",
  41. "longitude": "0"
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement