[WordPress] 外掛分享: WebDigit LLMs Index Suite

首頁外掛目錄 › WebDigit LLMs Index Suite
WordPress 外掛 WebDigit LLMs Index Suite 的封面圖片
全新外掛
安裝啟用
尚無評分
233 天前
最後更新
問題解決
WordPress 6.2+ PHP 8.1+ v0.2.29 上架:2025-09-10

內容簡介

總結:
WebDigit LLMs Index Suite通過發佈機器可讀的索引,讓您的WordPress網站具備GEO / AI-SEO功能。
重點特點:
- 同步三個文件:llms.txt,llms-full.txt,llms.json
- 圖片庫存:images.md(Markdown表格)+ images.jsonld(ImageObject)
- 公開URL:/llms.txt(根目錄)和/llms/*(虛擬目錄)
- 具有緩存的REST API:GET /wp-json/wdlis/v1/index,GET /wp-json/wdlis/v1/images(ETag + 304)
- 自動化:每6小時cron + WP-CLI(wp llms-suite regenerate)
- 控制:包括文章類型,排除URL模式,圖像MIME篩選器,可定制的授權meta key
- 安全性:只有已發佈的內容被索引(草稿,私人帖子被排除)
- 開發者鉤子:wdlis_index_query_args,wdlis_index_entries,wdlis_images_query_args等
存儲和公開展示:
- 文件寫入/wp-content/uploads/llms/。
- 公開展示乾淨:/llms.txt(根目錄)和/llms/<file>通過重寫規則提供(不需要在Web根目錄下編寫)。

問題與答案:
1. WebDigit LLMs Index Suite通過發佈什麼類型的索引,讓您的WordPress網站具備GEO / AI-SEO功能?
- 答:機器可讀的索引。

2. 這個插件的REST API具有什麼功能?
- 答:具有緩存的REST API:GET /wp-json/wdlis/v1/index,GET /wp-json/wdlis/v1/images(ETag + 304)。

3. 這個插件對公開展示的方式有什麼特點?
- 答:文件寫入/wp-content/uploads/llms/,而公開展示乾淨:/llms.txt(根目錄)和/llms/<file>通過重寫規則提供(不需要在Web根目錄下編寫)。

外掛標籤

開發者團隊

⬇ 下載最新版 (v0.2.29) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「WebDigit LLMs Index Suite」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

WebDigit LLMs Index Suite makes your WordPress site GEO / AI-SEO ready by publishing compact, machine-readable indexes for AI agents.
Key features
– Synchronized trio: llms.txt, llms-full.txt, llms.json
– Image inventory: images.md (Markdown table) + images.jsonld (ImageObject)
– Public URLs: /llms.txt (root) and /llms/* (virtual directory)
– REST API with caching: GET /wp-json/wdlis/v1/index, GET /wp-json/wdlis/v1/images (ETag + 304)
– Automation: cron every 6h + WP-CLI (wp llms-suite regenerate)
– Controls: include post types, exclude URL patterns, image MIME filters, customizable license meta key
– Security: Only published content is indexed (drafts, private posts excluded)
– Developer hooks: wdlis_index_query_args, wdlis_index_entries, wdlis_images_query_args, …
Storage & exposure
– Files are written to /wp-content/uploads/llms/.
– Public exposure is clean: /llms.txt (root) and /llms/ served via rewrite rules (no write needed at web root).
Why this matters (GEO / AI-SEO)
Generative engines and AI copilots prefer clean, structured sources. This plugin publishes a compact text index plus a first-class image inventory to help LLMs discover and summarize your content reliably.

This plugin does not modify your existing robots.txt or sitemaps and does not call external APIs.

Developer Notes
Filters
/**
* Adjust the WP_Query for index entries.
*/
apply_filters( ‘wdlis_index_query_args’, array $args ): array;
/**
* Final pass on index entries before output.
* Each entry: [‘url’ => string, ‘title’ => string, ‘lastmod’ => string]
*/
apply_filters( ‘wdlis_index_entries’, array $entries ): array;
/**
* Adjust the WP_Query for image entries (attachments).
*/
apply_filters( ‘wdlis_images_query_args’, array $args ): array;
/**
* Decide if a URL/file should be included after pattern checks.
*/
apply_filters( ‘wdlis_index_url_should_include’, bool $include, string $url, int $post_id, string $matched_pattern ): bool;
apply_filters( ‘wdlis_images_should_include’, bool $include, string $filepath, int $attachment_id, string $matched_pattern ): bool;
REST
GET /wp-json/wdlis/v1/index → JSON (with ETag headers)
GET /wp-json/wdlis/v1/images → JSON-LD ItemList (with ETag headers)
Privacy
This plugin:
does not collect personal data,
does not transmit data to remote servers,
writes only static helper files to /wp-content/uploads/llms/.
Site owners are responsible for the accuracy of license metadata on images and for excluding private/PII content via settings.

延伸相關外掛

文章
Filter
Apply Filters
Mastodon