{"id":359172,"date":"2026-08-27T19:01:47","date_gmt":"2026-08-27T19:01:47","guid":{"rendered":"https:\/\/de.wordpress.org\/plugins\/sev-structured-llms-txt\/"},"modified":"2026-09-25T16:56:25","modified_gmt":"2026-09-25T16:56:25","slug":"sev-structured-llms-txt","status":"publish","type":"plugin","link":"https:\/\/ibo.wordpress.org\/plugins\/sev-structured-llms-txt\/","author":15085268,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.4.0","stable_tag":"1.4.0","tested":"7.1.2","requires":"6.0","requires_php":"8.0","requires_plugins":null,"header_name":"Structured llms.txt","header_author":"Heinrich Franz","header_description":"Generates a structured llms.txt at \/llms.txt, listing pages and posts (grouped by category) so AI assistants and LLMs can discover your site's content. Works on single sites and WordPress Multisite, network-wide or per site.","assets_banners_color":"5826b8","last_updated":"2026-09-25 16:56:25","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"https:\/\/github.com\/HFranz\/wp-sev-structured-llms-txt","header_author_uri":"https:\/\/sevmatic.com","rating":0,"author_block_rating":0,"active_installs":10,"downloads":453,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.1.5":{"tag":"1.1.5","author":"hfranz","date":"2026-08-27 19:01:16","revision":3669419},"1.2.0":{"tag":"1.2.0","author":"hfranz","date":"2026-08-31 23:12:35","revision":3675043},"1.2.1":{"tag":"1.2.1","author":"hfranz","date":"2026-08-31 23:18:09","revision":3675046},"1.2.2":{"tag":"1.2.2","author":"hfranz","date":"2026-09-10 17:18:27","revision":3690251},"1.3.0":{"tag":"1.3.0","author":"hfranz","date":"2026-09-13 20:27:35","revision":3694157},"1.4.0":{"tag":"1.4.0","author":"hfranz","date":"2026-09-25 16:56:25","revision":3713346}},"upgrade_notice":[],"ratings":[],"assets_icons":{"icon.svg":{"filename":"icon.svg","revision":3675043,"resolution":false,"location":"assets","locale":false}},"assets_banners":{"banner-1544x500-de.png":{"filename":"banner-1544x500-de.png","revision":3675043,"resolution":"1544x500","location":"assets","locale":"de","width":1544,"height":500},"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3675043,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250-de.png":{"filename":"banner-772x250-de.png","revision":3675043,"resolution":"772x250","location":"assets","locale":"de","width":772,"height":250},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3675043,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3713347,"resolution":false,"location":"assets","locale":"","contents":"{\"$schema\":\"https:\\\/\\\/playground.wordpress.net\\\/blueprint-schema.json\",\"landingPage\":\"\\\/wp-admin\\\/options-general.php?page=sev-structured-llms-txt\",\"preferredVersions\":{\"php\":\"latest\",\"wp\":\"latest\"},\"features\":{\"networking\":true},\"login\":true,\"plugins\":[\"sev-structured-llms-txt\"],\"steps\":[{\"step\":\"runPHP\",\"code\":\"<?php\\nrequire '\\\/wordpress\\\/wp-load.php';\\n\\nupdate_option( 'blogname', 'Example Blog' );\\nupdate_option( 'blogdescription', 'Sample content for a nice-looking llms.txt' );\\n\\n$categories = array(\\n\\t'WordPress' => 'Tips, tutorials, and news about WordPress.',\\n\\t'SEO'       => 'Search engine optimization for better visibility.',\\n\\t'Travel'    => 'Trip planning tips and travel inspiration for everyday readers.',\\n);\\n\\n$category_ids = array();\\nforeach ( $categories as $name => $description ) {\\n\\t$term = wp_insert_term( $name, 'category', array( 'description' => $description ) );\\n\\t$category_ids[ $name ] = is_wp_error( $term ) ? (int) get_cat_ID( $name ) : (int) $term['term_id'];\\n}\\n\\n\\\/\\\/ The default \\\"Hello world!\\\" post ships uncategorized on a fresh install;\\n\\\/\\\/ give it a category so it doesn't show up under an \\\"Uncategorized\\\" group.\\n$hello_world = get_posts(\\n\\tarray(\\n\\t\\t'name'        => 'hello-world',\\n\\t\\t'post_type'   => 'post',\\n\\t\\t'post_status' => 'any',\\n\\t\\t'numberposts' => 1,\\n\\t)\\n);\\nif ( ! empty( $hello_world ) ) {\\n\\twp_set_post_categories( $hello_world[0]->ID, array( $category_ids['WordPress'] ) );\\n}\\n\\n$posts = array(\\n\\tarray(\\n\\t\\t'title'    => 'WordPress 7.1 at a Glance',\\n\\t\\t'category' => 'WordPress',\\n\\t\\t'excerpt'  => 'The most important changes in the current WordPress release, at a glance.',\\n\\t\\t'content'  => 'WordPress 7.1 brings numerous improvements to the block editor, performance, and accessibility.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'    => 'Using Primary Categories Correctly',\\n\\t\\t'category' => 'WordPress',\\n\\t\\t'excerpt'  => 'How SEO plugins determine a post\\\\'s primary category, and why that matters for llms.txt.',\\n\\t\\t'content'  => 'Many SEO plugins let you set a primary category when a post is assigned to more than one.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'    => 'Meta Descriptions That Get the Click',\\n\\t\\t'category' => 'SEO',\\n\\t\\t'excerpt'  => 'How to write meta descriptions that stand out in search results.',\\n\\t\\t'content'  => 'The meta description is often the deciding sentence behind a click in the search results.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'    => 'llms.txt: A New Standard for AI Assistants',\\n\\t\\t'category' => 'SEO',\\n\\t\\t'excerpt'  => 'Why structured llms.txt files make websites easier for AI systems to read.',\\n\\t\\t'content'  => 'Alongside robots.txt and sitemaps, llms.txt is emerging as a new, AI-friendly format for websites.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'    => '5 Tips for Planning Your Next Trip',\\n\\t\\t'category' => 'Travel',\\n\\t\\t'excerpt'  => 'Simple ways to plan a trip that actually goes smoothly, from budget to booking.',\\n\\t\\t'content'  => 'A little planning goes a long way: set a budget early, book flexible tickets, and leave room for spontaneity.',\\n\\t),\\n\\tarray(\\n\\t\\t'title'    => 'How to Pack a Carry-On Like a Pro',\\n\\t\\t'category' => 'Travel',\\n\\t\\t'excerpt'  => 'Fit everything you need into a single carry-on with these packing habits.',\\n\\t\\t'content'  => 'Rolling instead of folding, packing cubes, and a capsule wardrobe make a single carry-on go a long way.',\\n\\t),\\n);\\n\\n$post_count = count( $posts );\\nforeach ( $posts as $index => $post ) {\\n\\twp_insert_post(\\n\\t\\tarray(\\n\\t\\t\\t'post_title'    => $post['title'],\\n\\t\\t\\t'post_type'     => 'post',\\n\\t\\t\\t'post_status'   => 'publish',\\n\\t\\t\\t'post_content'  => $post['content'],\\n\\t\\t\\t'post_excerpt'  => $post['excerpt'],\\n\\t\\t\\t'post_category' => array( $category_ids[ $post['category'] ] ),\\n\\t\\t\\t'post_date'     => gmdate( 'Y-m-d H:i:s', strtotime( '-' . ( $post_count - $index ) . ' days' ) ),\\n\\t\\t)\\n\\t);\\n}\\n\\n\\\/\\\/ New posts get post_modified = post_date, so this also controls the\\n\\\/\\\/ modified-date order the plugin lists pages in. \\\"Home\\\" has the newest\\n\\\/\\\/ modified date (it would sort last on its own) but is set as the static\\n\\\/\\\/ front page below, so it still shows up first \\u2014 demonstrating that the\\n\\\/\\\/ front page is pinned ahead of the modified-date order.\\nwp_insert_post(\\n\\tarray(\\n\\t\\t'post_title'   => 'Contact',\\n\\t\\t'post_type'    => 'page',\\n\\t\\t'post_status'  => 'publish',\\n\\t\\t'post_content' => 'Have a question or feedback? Feel free to send us a message.',\\n\\t\\t'post_date'    => gmdate( 'Y-m-d H:i:s', strtotime( '-10 days' ) ),\\n\\t)\\n);\\n\\nwp_insert_post(\\n\\tarray(\\n\\t\\t'post_title'   => 'About Us',\\n\\t\\t'post_type'    => 'page',\\n\\t\\t'post_status'  => 'publish',\\n\\t\\t'post_content' => 'We are a small team specializing in thoughtfully built WordPress plugins.',\\n\\t\\t'post_date'    => gmdate( 'Y-m-d H:i:s', strtotime( '-5 days' ) ),\\n\\t)\\n);\\n\\n$home_page_id = wp_insert_post(\\n\\tarray(\\n\\t\\t'post_title'   => 'Home',\\n\\t\\t'post_type'    => 'page',\\n\\t\\t'post_status'  => 'publish',\\n\\t\\t'post_content' => 'Welcome to the Example Blog \\u2014 practical posts on WordPress, SEO, and travel, all in one place.',\\n\\t\\t'post_date'    => gmdate( 'Y-m-d H:i:s', strtotime( '-1 days' ) ),\\n\\t)\\n);\\n\\nupdate_option( 'show_on_front', 'page' );\\nupdate_option( 'page_on_front', $home_page_id );\\n\\n\\n\\n\"},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"sev-structured-llms-txt\"},\"options\":{\"activate\":true}}]}"}},"all_blocks":[],"tagged_versions":["1.1.5","1.2.0","1.2.1","1.2.2","1.3.0","1.4.0"],"block_files":[],"assets_screenshots":{"screenshot-1-de.png":{"filename":"screenshot-1-de.png","revision":3694263,"resolution":"1","location":"assets","locale":"de","width":1950,"height":1410},"screenshot-1.png":{"filename":"screenshot-1.png","revision":3694263,"resolution":"1","location":"assets","locale":"","width":1920,"height":1330},"screenshot-2-de.png":{"filename":"screenshot-2-de.png","revision":3694263,"resolution":"2","location":"assets","locale":"de","width":3348,"height":2362},"screenshot-2.png":{"filename":"screenshot-2.png","revision":3694263,"resolution":"2","location":"assets","locale":"","width":3262,"height":1861}},"screenshots":{"1":"Settings screen: tagline and post category order, with drag &amp; drop.","2":"Settings screen: full page, including the live llms.txt preview at the bottom."}},"plugin_section":[],"plugin_tags":[2353,244604,441,186,286],"plugin_category":[51,55,57],"plugin_contributors":[202978],"plugin_business_model":[],"class_list":["post-359172","plugin","type-plugin","status-publish","hentry","plugin_tags-ai","plugin_tags-llms-txt","plugin_tags-multisite","plugin_tags-seo","plugin_tags-woocommerce","plugin_category-multisite","plugin_category-seo-and-marketing","plugin_category-taxonomy","plugin_contributors-hfranz","plugin_committers-hfranz"],"banners":{"banner":"https:\/\/ps.w.org\/sev-structured-llms-txt\/assets\/banner-772x250.png?rev=3675043","banner_2x":"https:\/\/ps.w.org\/sev-structured-llms-txt\/assets\/banner-1544x500.png?rev=3675043","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":"https:\/\/ps.w.org\/sev-structured-llms-txt\/assets\/icon.svg?rev=3675043","icon":"https:\/\/ps.w.org\/sev-structured-llms-txt\/assets\/icon.svg?rev=3675043","icon_2x":false,"generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/sev-structured-llms-txt\/assets\/screenshot-1.png?rev=3694263","caption":"Settings screen: tagline and post category order, with drag &amp; drop."},{"src":"https:\/\/ps.w.org\/sev-structured-llms-txt\/assets\/screenshot-2.png?rev=3694263","caption":"Settings screen: full page, including the live llms.txt preview at the bottom."}],"raw_content":"<!--section=description-->\n<p><strong>Give AI assistants a clean, structured map of your site, not just a flat list of links.<\/strong><\/p>\n\n<p><a href=\"https:\/\/llmstxt.org\/\">llms.txt<\/a> is a proposed standard: a Markdown file at <code>\/llms.txt<\/code> that gives AI assistants and large language models a compact overview of a website's content. Think of it as a sitemap written for LLMs instead of search engines.<\/p>\n\n<p>A plain list of every URL is easy to generate, but hard to make sense of. Structured llms.txt organizes your content the way a human editor would: pages first, then posts grouped by category, then (with WooCommerce) products grouped by product category, each with a meaningful one-line description. You decide which categories appear and in which order.<\/p>\n\n<p>See it live: <a href=\"https:\/\/sevmatic.com\/en\/llms.txt\">sevmatic.com\/en\/llms.txt<\/a><\/p>\n\n<p><strong>Example output<\/strong><\/p>\n\n<pre><code># My Bakery\n\n&gt; Fresh bread and pastries, baked daily in Karlsruhe.\n<\/code><\/pre>\n\n<h3>Pages<\/h3>\n\n<pre><code>- [Home](https:\/\/example.com\/): Artisan bakery with sourdough bread, cakes and catering.\n- [About us](https:\/\/example.com\/about\/): Three generations of baking tradition.&lt;h3&gt;Posts&lt;\/h3&gt;\n### Recipes\n\n- [Classic sourdough](https:\/\/example.com\/sourdough\/): Step-by-step guide for your first sourdough loaf.&lt;h3&gt;Products&lt;\/h3&gt;\n### Cakes\n\n- [Cheesecake](https:\/\/example.com\/product\/cheesecake\/): Creamy baked cheesecake, available whole or by the slice.\n<\/code><\/pre>\n\n<p><strong>Why Structured llms.txt?<\/strong><\/p>\n\n<p>Several SEO plugins now include a basic llms.txt feature. This plugin focuses on what they usually don't:<\/p>\n\n<ul>\n<li><strong>Structure, not just a list:<\/strong> posts and products are grouped by category, in an order you set by drag &amp; drop. Each post appears exactly once, under its primary category.<\/li>\n<li><strong>Works with your SEO plugin, whichever it is:<\/strong> descriptions and \"noindex\" settings are read from Yoast SEO, Rank Math, SEOPress or All in One SEO. No SEO plugin? Excerpts are used instead.<\/li>\n<li><strong>Built for multilingual Multisite:<\/strong> each site gets its own llms.txt, and language versions can link to each other automatically.<\/li>\n<li><strong>WooCommerce ready:<\/strong> products are listed automatically as soon as WooCommerce is active.<\/li>\n<li><strong>Lightweight:<\/strong> no file is written to disk, no server write access needed, and the output is cached.<\/li>\n<\/ul>\n\n<p><strong>Features<\/strong><\/p>\n\n<ul>\n<li>Serves <code>\/llms.txt<\/code> as a virtual, cached endpoint. Nothing is written to disk.<\/li>\n<li>Automatically lists every published page, with the static front page first.<\/li>\n<li>Groups every published post by its primary category (compatible with Yoast SEO's \"Primary category\" setting), newest first within each category.<\/li>\n<li>Drag &amp; drop ordering of post categories and product categories on the settings screen; uncheck a category to hide it.<\/li>\n<li>WooCommerce: every published product is listed, grouped by primary product category.<\/li>\n<li>Link descriptions come from Yoast SEO, Rank Math, SEOPress or All in One SEO meta descriptions (checked in that order), falling back to the excerpt.<\/li>\n<li>Per-item \"Exclude from llms.txt\" checkbox for pages, posts and products (for example legal pages).<\/li>\n<li>Content marked \"noindex\" in any of the four supported SEO plugins is excluded automatically.<\/li>\n<li>WordPress Multisite: activate network-wide or per site. Each site generates and caches its own llms.txt.<\/li>\n<li>Multisite language linking: point this llms.txt to its counterparts on other sites in the network, with labels derived from each site's language.<\/li>\n<li>Optional custom tagline, shown as a blockquote below the site name.<\/li>\n<li>Live preview of the generated llms.txt on the settings screen.<\/li>\n<li>The cache clears automatically whenever content, categories or settings change.<\/li>\n<li>Section headings follow the site language (for example \"## Seiten\" and \"## Beitr\u00e4ge\" on German sites).<\/li>\n<\/ul>\n\n<p><strong>Limitations<\/strong><\/p>\n\n<p>Structured llms.txt lists pages, posts and (if WooCommerce is active) products. Other custom post types are not included. On a Multisite network, each site's llms.txt describes only that site's own content; content from several sites is never merged into one document.<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Install the plugin via <strong>Plugins \u2192 Add New<\/strong> or upload the <code>sev-structured-llms-txt<\/code> folder to <code>\/wp-content\/plugins\/<\/code>.<\/li>\n<li>Activate the plugin (per site, or network-wide on Multisite).<\/li>\n<li>Open <strong>Settings \u2192 llms.txt<\/strong> to set an optional tagline, choose and order the post (and product) categories, and on Multisite link other language sites.<\/li>\n<li>Visit <code>https:\/\/your-site.com\/llms.txt<\/code> to see the result.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"my%20seo%20plugin%20already%20has%20an%20llms.txt%20feature.%20is%20there%20a%20conflict%3F\"><h3>My SEO plugin already has an llms.txt feature. Is there a conflict?<\/h3><\/dt>\n<dd><p>Only one llms.txt can be served at <code>\/llms.txt<\/code>, so please use only one tool for it. Disable the llms.txt option in your SEO plugin, and check your web root for a physical <code>llms.txt<\/code> file: some plugins write a real file, and a real file is always served by the web server before WordPress gets a chance to respond. Delete it (or rename it) and Structured llms.txt takes over. Everything else in your SEO plugin keeps working as before, and its meta descriptions and \"noindex\" settings are still used.<\/p><\/dd>\n<dt id=\"will%20ai%20assistants%20actually%20read%20my%20llms.txt%3F\"><h3>Will AI assistants actually read my llms.txt?<\/h3><\/dt>\n<dd><p>llms.txt is a proposed standard, and support differs between AI providers and tools. It costs nothing to offer, it helps any assistant or agent that looks for it, and it gives you control over how your site is summarized. It is not a replacement for classic SEO, and no plugin can guarantee that a specific AI service uses it.<\/p><\/dd>\n<dt id=\"does%20it%20support%20woocommerce%20products%3F\"><h3>Does it support WooCommerce products?<\/h3><\/dt>\n<dd><p>Yes, automatically. If WooCommerce is active, every published product is listed in a <code>## Products<\/code> section, grouped by product category, with its own order under <strong>Settings \u2192 llms.txt<\/strong>. Without WooCommerce, this section is simply omitted.<\/p><\/dd>\n<dt id=\"does%20it%20require%20an%20seo%20plugin%3F\"><h3>Does it require an SEO plugin?<\/h3><\/dt>\n<dd><p>No. Yoast SEO, Rank Math, SEOPress and All in One SEO are used automatically if installed, as a source for descriptions and \"noindex\" settings. Without any of them, the page or post excerpt is used instead.<\/p><\/dd>\n<dt id=\"does%20this%20create%20a%20physical%20llms.txt%20file%3F\"><h3>Does this create a physical llms.txt file?<\/h3><\/dt>\n<dd><p>No. The file is served dynamically through a rewrite rule and cached, so it always reflects your current content without any file write access.<\/p><\/dd>\n<dt id=\"how%20is%20the%20description%20behind%20each%20link%20determined%3F\"><h3>How is the description behind each link determined?<\/h3><\/dt>\n<dd><p>If Yoast SEO, Rank Math, SEOPress or All in One SEO has a meta description for the item, it is used (checked in that order). Otherwise the item's own excerpt is used, or a short excerpt generated from its content.<\/p><\/dd>\n<dt id=\"how%20do%20i%20exclude%20a%20page%20or%20post%2C%20like%20my%20privacy%20policy%3F\"><h3>How do I exclude a page or post, like my privacy policy?<\/h3><\/dt>\n<dd><p>Open it in the block editor and check \"Exclude from llms.txt\" in the sidebar panel of the same name. Items marked \"noindex\" in a supported SEO plugin are excluded automatically too, since content hidden from search engines is usually not meant for LLMs either.<\/p><\/dd>\n<dt id=\"how%20do%20i%20control%20the%20order%20of%20the%20category%20sections%3F\"><h3>How do I control the order of the category sections?<\/h3><\/dt>\n<dd><p>Go to <strong>Settings \u2192 llms.txt<\/strong> and drag the categories into the order you want. Uncheck any category you don't want listed at all.<\/p><\/dd>\n<dt id=\"does%20it%20work%20with%20wordpress%20multisite%3F\"><h3>Does it work with WordPress Multisite?<\/h3><\/dt>\n<dd><p>Yes. Activate it network-wide or on individual sites. Each site generates and caches its own llms.txt. If you run one site per language, you can link the llms.txt files of these sites to each other on the settings screen.<\/p><\/dd>\n<dt id=\"i%20get%20a%20404%20at%20%2Fllms.txt.%20what%20can%20i%20do%3F\"><h3>I get a 404 at \/llms.txt. What can I do?<\/h3><\/dt>\n<dd><p>Go to <strong>Settings \u2192 Permalinks<\/strong> and click \"Save Changes\" once. This refreshes the rewrite rules. Also make sure no physical <code>llms.txt<\/code> file or server rule (for example in <code>.htaccess<\/code> or the Nginx config) intercepts the URL.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.4.0<\/h4>\n\n<ul>\n<li>Titles, category names, and descriptions are now decoded and stripped of markup before being written to llms.txt: WordPress-escaped characters (e.g. \"AI &amp; Software\" or a <code>wptexturize()<\/code>-inserted \"&#8211;\" or \"&hellip;\") and soft hyphens (<code>&amp;shy;<\/code>) no longer leak into the output as literal HTML entities.<\/li>\n<li>Moved the alternate-language-version link to directly below the tagline, before <code>## Pages<\/code>, matching the llms.txt specification's placement of blockquote metadata right after the H1; it's now also written as a proper Markdown link, <code>[URL](URL)<\/code>, instead of a bare URL.<\/li>\n<\/ul>\n\n<h4>1.3.0<\/h4>\n\n<ul>\n<li>Pages are now sorted by last-modified date, oldest first, with the static front page (if configured) always at the top. This matches how Yoast SEO orders pages in its XML sitemap. Previously pages were ordered by menu order, then by title.<\/li>\n<\/ul>\n\n<h4>1.2.2<\/h4>\n\n<ul>\n<li>Added \"Support\" and \"Rate this plugin\" links to the plugin's row on the Plugins screen.<\/li>\n<\/ul>\n\n<h4>1.2.1<\/h4>\n\n<ul>\n<li>Shortened the short description to fit the 150-character limit of WordPress.org.<\/li>\n<\/ul>\n\n<h4>1.2.0<\/h4>\n\n<ul>\n<li>New: WooCommerce support. Published products are listed in a <code>## Products<\/code> section, grouped by product category, with drag &amp; drop ordering. The \"Exclude from llms.txt\" checkbox and \"noindex\" detection apply to products too.<\/li>\n<\/ul>\n\n<h4>1.1.5<\/h4>\n\n<ul>\n<li>Bundled translation files are no longer shipped in the package; translations are delivered via translate.wordpress.org.<\/li>\n<\/ul>\n\n<h4>1.1.4<\/h4>\n\n<ul>\n<li>Code quality: resolved Plugin Check and PHPCS warnings.<\/li>\n<\/ul>\n\n<h4>1.1.3<\/h4>\n\n<ul>\n<li>Added a formal German translation (de_DE_formal, \"Deutsch (Sie)\").<\/li>\n<\/ul>\n\n<h4>1.1.2<\/h4>\n\n<ul>\n<li>Fixed: the German translation now also loads on sites where the plugin was installed manually.<\/li>\n<\/ul>\n\n<h4>1.1.1<\/h4>\n\n<ul>\n<li>Fixed: WordPress redirected <code>\/llms.txt<\/code> to <code>\/llms.txt\/<\/code>.<\/li>\n<\/ul>\n\n<h4>1.1.0<\/h4>\n\n<ul>\n<li>New: pages and posts marked \"noindex\" in Yoast SEO, Rank Math, SEOPress or All in One SEO are excluded automatically.<\/li>\n<li>Added a German (de_DE) translation.<\/li>\n<\/ul>\n\n<h4>1.0.0<\/h4>\n\n<ul>\n<li>Initial release.<\/li>\n<\/ul>","raw_excerpt":"Structured llms.txt for AI assistants: posts and products grouped by category, works with Yoast, Rank Math &amp; more, Multisite ready.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/359172","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=359172"}],"author":[{"embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/hfranz"}],"wp:attachment":[{"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=359172"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=359172"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=359172"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=359172"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=359172"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/ibo.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=359172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}