PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.7.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.7.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 1.1.0 1.10.0 All 48 releases
← All changes | includes/editor/bricks/class-toc-element.php +7 -1 2.4.02.7.0 View file →
@@ -187,9 +187,15 @@
187 187 $output .= '</div>';
188 188
189 189 echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
190 190
191 - $this->render_builder_script($uid, $max_level, !empty($settings['outputSchema']));
191 + // Built client-side, so it bypasses Schema_Graph and the block filter
192 + // and kept publishing an ItemList with Schema switched off (#688).
193 + $schema = !empty($settings['outputSchema'])
194 + && (!class_exists('ThinkRank\\Frontend\\Schema_Graph')
195 + || \ThinkRank\Frontend\Schema_Graph::output_allowed());
196 +
197 + $this->render_builder_script($uid, $max_level, $schema);
192 198 }
193 199
194 200 /**
195 201 * The dependency-free script that fills the list in.