PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.9.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.9.0
2.9.0 2.8.0 2.7.0 2.6.0 2.5.0 2.4.0 2.3.0 2.2.0 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.32.0 1.31.0 1.30.0 1.29.0 1.28.0 1.27.0 1.26.0 1.25.0 trunk 1.0.0 1.0.1 1.0.2 All 50 releases
← All changes | includes/seo/class-schema-factory.php +12 -1 1.0.0 → 2.9.0 View file →
@@ -106,12 +106,22 @@
106 106 'required' => ['@type', 'name', 'startDate', 'location'],
107 107 'recommended' => ['endDate', 'description', 'image', 'offers', 'performer'],
108 108 'optional' => ['eventStatus', 'eventAttendanceMode', 'url', 'organizer']
109 109 ],
110 + 'Review' => [
111 + 'required' => ['@type', 'itemReviewed', 'reviewRating', 'author'],
112 + 'recommended' => ['reviewBody', 'datePublished', 'publisher'],
113 + 'optional' => ['name', 'url']
114 + ],
110 115 'HowTo' => [
111 116 'required' => ['@type', 'name', 'step'],
112 117 'recommended' => ['image', 'totalTime', 'estimatedCost', 'tool', 'supply'],
113 118 'optional' => ['description', 'prepTime', 'difficulty', 'yield', 'video']
119 + ],
120 + 'VideoObject' => [
121 + 'required' => ['@type', 'name', 'description', 'thumbnailUrl', 'uploadDate'],
122 + 'recommended' => ['contentUrl', 'embedUrl', 'duration'],
123 + 'optional' => ['interactionStatistic', 'expires', 'regionsAllowed']
114 124 ]
115 125 ];
116 126
117 127 /**
@@ -178,9 +188,10 @@
178 188 'technicalarticle' => 'TechnicalArticle',
179 189 'newsarticle' => 'NewsArticle',
180 190 'scholarlyarticle' => 'ScholarlyArticle',
181 191 'faqpage' => 'FAQPage',
182 - 'howto' => 'HowTo'
192 + 'howto' => 'HowTo',
193 + 'videoobject' => 'VideoObject'
183 194 ];
184 195
185 196 $key = strtolower($schema_type);
186 197 return $schema_cases[$key] ?? ucfirst($schema_type);