Linux 软件免费装
Banner图

AI Content Signals

开发者 fernandot
ayudawp
更新时间 2026年3月28日 02:56
PHP版本: 7.4 及以上
WordPress版本: 7.0
版权: GPLv2 or later
版权网址: 版权信息

标签

seo ai robots.txt cloudflare crawlers

下载

1.2.1 1.2.2 1.0.1 1.0.0 1.2.0 1.1.0

详情介绍:

AI Content Signals allows you to easily implement the Content Signals Policy in your WordPress site's robots.txt file. This gives you more control over how AI crawlers and large language models (LLMs) can use your content. What are Content Signals? Content Signals is an extension to the robots.txt standard created by Cloudflare that lets you specify three types of permissions for AI crawlers: Key Features Supported Bots The plugin includes predefined settings for 28 major AI crawlers: Important Notice Content Signals is a declarative standard - it expresses your preferences but does not technically enforce them. AI companies are not legally required to respect these signals, though the plugin includes legal text referencing EU copyright directives. The IETF AI Preferences (AIPREF) Working Group is currently developing a formal standard based on similar concepts. This plugin implements the current Cloudflare Content Signals specification and will be updated as standards evolve. This plugin works best when combined with other protection measures like traditional robots.txt rules and server-level bot management.

安装:

  1. Upload the plugin files to /wp-content/plugins/ai-content-signals/, or install through the WordPress plugins screen
  2. Activate the plugin through the 'Plugins' screen in WordPress
  3. Go to Settings > AI Content Signals to configure your preferences
  4. Save settings to apply Content Signals to your robots.txt

屏幕截图:

  • Bot-specific settings for granular control
  • Custom bots section for adding new AI crawlers
  • Live preview of generated robots.txt content
  • Export, import, and restore default settings

升级注意事项:

1.2.0 New export/import and restore defaults features, 3 new AI bots (DeepSeek, Grok, Pangu), sticky table headers, developer filter hook, and bug fixes. 1.1.0 New AI bots added (OAI-SearchBot, Amazonbot, DuckAssistBot, MistralAI-User and more), code quality improvements, and dynamic promotional banner. 1.0.1 Plugin tested with WordPress 6.9 (and it works) 1.0.0 Initial release of AI Content Signals. Control how AI crawlers use your content with Content Signals in your robots.txt.

常见问题:

What happens if I have a physical robots.txt file?

The plugin will detect your physical robots.txt file and append Content Signals to the end of it. Make sure the file is writable (permissions 644 recommended).

Can the plugin create a robots.txt file if I don't have one?

Yes! You can enable the option "Create physical robots.txt file if it doesn't exist" in the settings. This will create a basic robots.txt with standard WordPress rules plus your Content Signals.

What rules are included in the automatically created robots.txt?

The plugin creates a basic robots.txt with these rules:

  • Disallow /wp-admin/ (except admin-ajax.php)
  • Disallow /wp-includes/
  • Disallow /wp-content/plugins/
  • Disallow /wp-content/themes/
  • Disallow /wp-content/cache/
  • Disallow readme.html and license.txt
  • Automatically includes your WordPress sitemap if available

What if I use an SEO plugin that manages robots.txt?

No problem! The plugin uses WordPress's robots_txt filter, so it will add Content Signals to the virtual robots.txt generated by your SEO plugin without conflicts.

Will AI crawlers actually respect these signals?

Content Signals is a proposed standard and not all AI companies have committed to respecting it. It's a way to express your preferences, but not a guarantee of enforcement. However, major AI companies like OpenAI, Anthropic, and Google have shown interest in respecting such signals.

Can I use this with Cloudflare?

Yes! If you use Cloudflare's managed robots.txt, you can still use this plugin. The settings will apply to your WordPress-generated robots.txt.

What are the default settings?

By default, all signals are set to "yes" (allowed) for all user-agents. The option to create a physical robots.txt is disabled by default. You can change any of these settings in the settings page.

How do I remove Content Signals completely?

Simply uninstall the plugin. The uninstall process will remove all settings and clean up your physical robots.txt if applicable.

Can I transfer settings between sites?

Yes! Use the Export button on the settings page to download a JSON file with your full configuration, then use Import on another site to restore it. This includes global settings, individual bot overrides, and custom bots.

Is Content Signals an official web standard?

Not yet. Cloudflare published the Content Signals Policy in September 2025 and released it under CC0. The IETF has since created the AI Preferences (AIPREF) Working Group to develop a formal standard based on similar concepts. The plugin implements the current Cloudflare specification and will be updated as standards evolve.

Can developers extend the bot list programmatically?

Yes. Use the ayudawp_acs_predefined_bots filter to add or remove bots without modifying the plugin. Add this to your theme's functions.php or a custom plugin: add_filter( 'ayudawp_acs_predefined_bots', function( $bots ) { // Add a new bot. $bots['MyCustomBot'] = 'My Custom AI Bot'; // Remove an existing bot. unset( $bots['Omgilibot'] ); return $bots; } ); The array key is the User-Agent string used in robots.txt and the value is the label displayed in the settings page.

Do I need to manually edit my robots.txt file?

No! The plugin handles everything automatically. Just configure your preferences in the settings page and save.

更新日志:

1.2.2 1.2.1 Tested up to WordPress 7.0 1.2.0 1.1.0 1.0.1 1.0.0