
WPSSO version 3.33.1-1 has been released, along with updates for the WPSSO JSON, WPSSO ORG, and WPSSO PLM extensions.
One of the big features for this new release is the added support for the Schema http://schema.org/Event type and its sub-types (DanceEvent, MusicEvent, etc.), along with integration of The Events Calendar plugin. The Events Calendar plugin already includes basic JSON-LD support, but the WPSSO Organization Markup (WPSSO ORG) and WPSSO Place / Location and Local Business Meta (WPSSO PLM) extensions allow you to include much more detail about the organizer (as an actual Organization instead of a Person), select a performer for the event, along with WPSSO’s standard support for images, videos, etc. The combination of WPSSO Pro and all three Pro extensions can provide extensive Schema markup about your event — see the following Schema JSON-LD markup for an example.
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 135 136 137 138 139 140 141 142 143 144 145 146 |
<script type="application/ld+json">{ "@context": "http://schema.org", "@type": "DanceEvent", "url": "http://adm.surniaulula.com/event/an-example-event/", "name": "An Example Event", "description": "An excerpt for this example event.", "mainEntityOfPage": { "@context": "http://schema.org", "@type": "WebPage", "@id": "http://adm.surniaulula.com/event/an-example-event/" }, "startDate": "2016-07-02T20:00:00+00:00", "endDate": "2016-07-02T22:00:00+00:00", "organizer": { "@context": "http://schema.org", "@type": "Organization", "url": "http://example-organizer-website.com", "name": "An Event Organizer", "alternateName": "An Alternate Organization Name", "description": "A description for this example organizer.", "logo": { "@context": "http://schema.org", "@type": "ImageObject", "url": "http://example-organizer-website.com/business-logo.jpg" }, "location": { "@context": "http://schema.org", "@type": "EntertainmentBusiness", "name": "An Organizer Location", "address": { "@context": "http://schema.org", "@type": "PostalAddress", "streetAddress": "123 A Road", "addressLocality": "Some City", "addressRegion": "California", "postalCode": "123456789", "addressCountry": "US" }, "geo": { "@context": "http://schema.org", "@type": "GeoCoordinates", "latitude": "32.7681037", "longitude": "-117.2517683" }, "openingHoursSpecification": [ { "@context": "http://schema.org", "@type": "OpeningHoursSpecification", "dayOfWeek": "Sunday", "validFrom": "2016-05-01", "validThrough": "2016-08-31" }, { "@context": "http://schema.org", "@type": "OpeningHoursSpecification", "dayOfWeek": "Saturday", "validFrom": "2016-05-01", "validThrough": "2016-08-31" } ] } }, "location": { "@context": "http://schema.org", "@type": "Place", "url": "http://adm.surniaulula.com/venue/an-example-venue/", "name": "An Example Venue", "description": "A description for this example venue.", "telephone": "123-456-7890", "address": { "@context": "http://schema.org", "@type": "PostalAddress", "streetAddress": "123 A Road", "addressLocality": "Some City", "addressRegion": "CA", "postalCode": "123456789", "addressCountry": "United States" }, "geo": { "@context": "http://schema.org", "@type": "GeoCoordinates", "latitude": 0, "longitude": 0 } }, "offers": [ { "@context": "http://schema.org", "@type": "Offer", "price": "20" } ], "performer": { "@context": "http://schema.org", "@type": "DanceGroup", "url": "http://example-dance-group.com", "name": "A Dance Group", "alternateName": "The Festival Dance Group", "description": "A description for this dance group.", "logo": { "@context": "http://schema.org", "@type": "ImageObject", "url": "http://example-dance-group.com/organization-logo.jpg" } }, "inLanguage": "en_US", "image": [ { "@context": "http://schema.org", "@type": "ImageObject", "url": "http://this-website.com/wp-content/uploads/an-image-800x800.jpg", "width": 800, "height": 800 } ], "video": [ { "@context": "http://schema.org", "@type": "VideoObject", "url": "https://www.youtube.com/v/taw1J6DZD9U?version=3&autohide=1", "name": "Deva Premal", "description": "Example YouTube Video.", "fileFormat": "application/x-shockwave-flash", "width": "640", "height": "360", "uploadDate": "2012-02-17T00:00:00+00:00", "thumbnailUrl": "https://i.ytimg.com/vi/taw1J6DZD9U/hqdefault.jpg", "embedUrl": "https://www.youtube.com/embed/taw1J6DZD9U" }, { "@context": "http://schema.org", "@type": "VideoObject", "url": "https://www.youtube.com/embed/taw1J6DZD9U", "name": "Deva Premal - Love is Space (Mantra)", "description": "Example YouTube Video", "fileFormat": "text/html", "width": "640", "height": "360", "uploadDate": "2012-02-17T00:00:00+00:00", "thumbnailUrl": "https://i.ytimg.com/vi/taw1J6DZD9U/hqdefault.jpg", "embedUrl": "https://www.youtube.com/embed/taw1J6DZD9U" } ] }</script> |