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/core/class-plan-config.php +5 -2 2.6.02.7.0 View file →
@@ -57,9 +57,11 @@
57 57 * `Require-Attribution:` directives that state what agents may do with the
58 58 * content, rather than describing the content itself (#160 in Pro).
59 59 *
60 60 * Schema:
61 - * usage_policy bool May publish usage-policy directives in llms.txt.
61 + * usage_policy bool May publish usage-policy directives in llms.txt.
62 + * full_document bool May publish llms-full.txt, the full-content
63 + * companion document (thinkrank-pro#171).
62 64 *
63 65 * @since 2.5.0
64 66 *
65 67 * @return array Capability map.
@@ -65,9 +67,10 @@
65 67 * @return array Capability map.
66 68 */
67 69 public static function llms_txt(): array {
68 70 $defaults = [
69 - 'usage_policy' => false,
71 + 'usage_policy' => false,
72 + 'full_document' => false,
70 73 ];
71 74
72 75 /**
73 76 * Filter the llms.txt capability map.