
前言介紹
- 這款 WordPress 外掛「LLM Moderator For wpForo」是 2026-02-16 上架。
- 目前尚無安裝啟用數,是個很新的外掛。如有要安裝使用,建議多測試確保功能沒問題!
- 上一次更新是 2026-02-21,距離現在已有 4 天。
- 外掛最低要求 WordPress 6.0 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 7.4 以上。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
colaiasq |
外掛標籤
AI | LLM | forum | wpforo | moderator |
內容簡介
結論:
這個外掛將AI技術應用於在wpForo論壇外掛中進行內容管理。它使用OpenRouter API來即時分析論壇帖子和主題,自動標記不當內容並禁言違反自訂論壇管理準則的使用者。
問題與答案:
1. 這個外掛使用了什麼API來進行即時的論壇內容分析?
- 答:它使用OpenRouter API。
2. 外掛提供了哪些基本功能?
- 答:包括AI驅動的內容管理、柔性的標記系統、用戶管理、即時處理、定時維護、統計數據跟蹤等功能。
3. 這個外掛的重要注意事項是什麼?
- 答:這個外掛目前處於測試階段(beta),第一個版本!在安裝試用軟件之前,請先備份您的站點。
原文外掛簡介
This plugin integrates AI-powered context-aware content moderation with the wpForo forum plugin. It uses OpenRouter API to analyze forum posts and topics in real-time, automatically flagging inappropriate content and muting users who violate your custom forum moderation guidelines.
Important Note
This plugin is in beta. Ready/rc but still an early release. It’s recommend to backup your site before installing beta software.
Base Features
AI-Powered Moderation: Uses OpenRouter API with configurable AI models (default: deepseek/deepseek-chat-v3.2)
Context Aware Moderation: Analyzes posts with surrounding context (previous and next posts) for better accuracy
Private by default: Considerable forum and user privacy by default when sending user data for analysis, and your data lives on your server
Flexible Flagging System: Customizable flag types (flag, nsfw, spam, etc.) with individual mute durations
User Management: Automatically moves flagged users to a “Muted” database table, prevents them from posting
Flags Only Supported: Enable only for flag metrics, stealthy tag users without applying mute penalty
Standalone Admin Interface: Accessible to both Administrators, Moderators, and assigned usergroups
Real-time Processing: Analyzes posts and topics as they’re submitted, set your OpenRouter query timeout limit
Append AI Message: Append custom messages with {TYPE} and {REASON} formatting tags
Content Cleanup: Automatically handles unapproved content removal
Scheduled Maintenance: Daily cleanup of expired mutes
Metrics: Track basic moderation statistics up to 1 year (5 years in premium)
Notifications: Shortcode for user notifications about moderation and mute status
Requirements
WordPress 6.0+ (Tested 6.9)
wpForo plugin active (Tested current: 2.4.15, Previous versions tested 2.4.8 – 2.4.15)
PHP 8.0+ (Tested 8.2)
MySQL 8.0+ (Tested 8.0)
OpenRouter API key
Shortcode
This plugin provides shortcodes for displaying moderation-related content on your site.
Base Plugin Shortcode
[colaias_wpforo_ai_notices] – Displays user notifications about moderation and mute status
Usage:
[colaias_wpforo_ai_notices top='30px' right='30%' width='40%']
Parameters:
* top – (Optional) Top position of the notification container. Default: ’20px’
* right – (Optional) Right position of the notification container. Default: ’20px’
* width – (Optional) Width of the notification container. Default: ‘350px’
Placement:
Add this shortcode to the [wpforo] page. The notifications will display information to users:
* When a user is muted hence cannot post
* When a user’s post has been flagged
* Moderation status updates
Check out Premium 🚀
✨ Premium Version ✨
Upgrade to the premium version for advanced features including:
🌟 Enhanced Features:
* 🛠️ Enhanced Moderator Control Panel – Bulk select management for efficient moderation
* 🎨 Easy Prompt Engineering Interface – Visual prompt builder
* 🌊 Forum Flood Control System – User and forum posting limits to prevent spam attacks
* 📊 Comprehensive Premium Metrics – 5-year data retention with detailed analytics
* 📈 Charts & Graphs For Metrics – Comprehensive visualizations with user table for metrics
* 🔎 User Look-Up – Look up individual users flag metrics
* 💎 Lifetime Single Purchase – No subscriptions, one-time payment for lifetime updates
💖 Support Independent Development:
Your purchase helps keep this plugin free and actively maintained! Support innovation in open-source AI moderation tools.
📧 Interested in Premium?
Contact us for early access and pricing:
* Telegram: https://t.me/wpforo_ai
External Services
This plugin integrates with the OpenRouter API (https://openrouter.ai/) to provide AI-powered content moderation for wpForo forums. When configured with a valid OpenRouter API key, the plugin sends moderation requests to analyze forum posts in real-time.
The query is made to this url: ‘https://openrouter.ai/api/v1/chat/completions’
Data Transmission and Privacy
What Data Is Sent:
– Only the user’s post content is transmitted to OpenRouter
– A moderation prompt configured by the administrator precedes the post content
– No personally identifiable information (name, username, or user ID) is included in the post content
– Each post from non-muted users triggers exactly one API request
Current Implementation:
The plugin now includes Context Aware Moderation, which analyzes posts with surrounding context (previous and next posts) for better accuracy while maintaining user privacy with aliases. Usernames are replaced with aliases to protect user privacy while providing the AI with necessary conversational context.
About OpenRouter
OpenRouter is an AI routing service that provides access to multiple LLM models from various providers. When using this plugin, your data passes through OpenRouter to the selected AI model provider.
Important Links:
– OpenRouter Privacy Policy: https://openrouter.ai/privacy
– OpenRouter Terms of Service: https://openrouter.ai/terms
– OpenRouter Data Collection Policy: https://openrouter.ai/docs/guides/privacy/data-collection
AI Provider Policies:
Each LLM provider (such as OpenAI, Anthropic, DeepSeek, etc.) has its own data handling policies. For information on how different providers process data, see OpenRouter’s provider logging documentation: https://openrouter.ai/docs/guides/privacy/logging
Optional Data Sharing
You may optionally send:
– Your site’s URL (via HTTP-Referer header)
– Application title (via X-Title header)
These optional fields help OpenRouter rank applications and improve service quality.
Technical Implementation
API Request Structure:
The plugin sends POST requests to OpenRouter (‘https://openrouter.ai/api/v1/chat/completions’) with the following JSON payload structure:
$body = json_encode( [
'model' => $model,
'messages' => [
['role' => 'user', 'content' => $json_prompt],
],
'max_tokens' => 1000, // Maximum tokens in response (50-80 is typically sufficient)
'temperature' => 0.1,
'response_format' => ['type' => 'json_object'],
] );
Response Expectation:
The plugin expects OpenRouter to return a JSON object containing moderation results with ‘type’ and ‘reason’ keys as specified in your moderation prompt.
Configuration Options:
– The plugin uses default provider selection parameters. For advanced routing configuration, see: https://openrouter.ai/docs/guides/routing/provider-selection, though these can not be changed from default besides what is already configured above
– You can customize request processing through the OpenRouter dashboard, including model selection and privacy policies on a per-key basis: https://openrouter.ai/settings/privacy
– You can configure your key, and set limits and alerts as needed
– With this plugin, you can also set a timeout for the OpenRouter query from 10-300 seconds
Requirements
A valid OpenRouter API key must be configured in the plugin settings
Your OpenRouter account must have sufficient credits for API usage
Your prompt must specifically ask for a JSON format response with ‘type’ key and optionally ‘reason’ key, no other formats are accepted
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「LLM Moderator For wpForo」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
SEOPress – On-site SEO & Analytics 》最佳的 WordPress SEO 外掛程式,與所有網頁建構工具和佈景主題全部整合!, 現在增加了 AI 功能,自動產生 meta 標題和描述!, SEOPress 是一個強大的 WordPr...。
AI Engine – The Chatbot, AI Framework & MCP for WordPress 》AI Engine 是一款 WordPress 外掛,可以建立像 ChatGPT 這樣的聊天機器人(或其他類型),並能夠自動產生內容、圖片,讓你可以將一切內容組織成模板,快速建...。
GetGenie – AI Content Writer with Keyword Research & SEO Tracking Tools 》尋找一個 AI 助理來利用人工智慧、SEO 關鍵字分析和競爭對手分析來創建部落格文章、社交媒體內容、電子郵件副本、文案和其他行銷和合作材料,只要一眨眼就行...。
Website LLMs.txt 》總結:Website LLMs.txt透過自動生成和管理LLMS.txt檔案,幫助搜尋引擎和人工智慧系統更好理解你的網站內容,並可與常用的SEO外掛如Yoast SEO和RankMath無縫...。
SEO Plugin by Squirrly SEO 》「Squirrly SEO 插件:#1 AI WordPress SEO 外掛程式」HTML描述, , Squirrly SEO 插件: #1 AI WordPress SEO 插件, 解決您的 SEO 挑戰。, Squirrly 的使命是...。
Smartsupp – live chat, AI shopping assistant and chatbots 》同樣的流量,更多的銷售, Smartsupp 是您的個人購物助手。它結合了即時聊天和聊天機器人,為您節省時間,並幫助您將訪客轉化為忠實顧客。Smartsupp 是歐洲最...。
Alt Text AI – Automatically generate image alt text for SEO and accessibility 》AltText.ai 是一個 WordPress 外掛,利用最新的 AI 計算機視覺和深度學習技術為您的圖像自動生成替代文字。, 使用我們的深度學習 AI,改善您的 SEO,並提高網...。AI Muse – AI Chatbot, AI Content Generator & Writer, AI Image Generator, AI Assistant, ChatGPT, GPT-4o, Gemini, LLAMA, Claude 》總結:AI Muse 是一款革新方式在WordPress網站上創建內容的前沿插件。, , 1. AI Muse 提供包括OpenAI、Google AI和OpenRouter在內的100多種AI模型。, 2. 可自...。
AI Puffer – Your AI engine for WordPress (formerly AI Power) 》GPT AI Power 是一個完整的 WordPress 人工智慧套件,可以生成具有自訂選項的內容、圖像和表單。它包括 AI 訓練、聊天小工具、WooCommerce 整合、Embeddings ...。
Echo Knowledge Base – Documentation, FAQs, AI Chat & AI Search 》g integration lets you integrate your WordPress Knowledge Base with the popular Help Dialog software, allowing you to provide instant support to yo...。
Hyve Lite — Conversational AI Chatbot 》總結:Hyve Lite 是一個AI驅動的WordPress外掛程式,將您的網站內容轉換為互動對話。它利用您的文章和頁面作為知識庫,實現動態用戶互動。輕鬆從WordPress儀...。
Image Alt Text Manager – Bulk & Dynamic Alt Tags For image SEO Optimization + AI 》, Alt Manager WordPress 外掛可以批次修改你的 WordPress 圖片的 Alt 和 Title 屬性文字,並將它們分別產生為多個與之相關的動態值,讓你在(首頁-頁面-文章...。
Angie – Agentic AI for WordPress (Beta) 》<html>, <ul>, <li><strong>摘要:</strong> Angie 目前處於 Beta 模式。雖然 WordPress 和 Elementor 編輯器的核心功能穩...。
AIKO – AI Developer Lite 》**總結:**, AIKO 是一款革命性的 AI 外掛,無需編碼即可在幾分鐘內創建定製外掛,節省時間並擁有精確的功能。這款外掛不僅幫助網站管理者、開發人員和小型企...。
GeekyBot — Generate AI Content Without Prompt, Chatbot and Lead Generation 》<!DOCTYPE html>, <html>, <body>, , <h2>WordPress 外掛總結:</h2>, <p>這是一款終極 AI 聊天機器人,可在您的 WordP...。
