| 开发者 |
fernandot
ayudawp |
|---|---|
| 更新时间 | 2026年3月28日 02:56 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
/wp-content/plugins/ai-content-signals/, or install through the WordPress plugins screenThe 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).
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.
The plugin creates a basic robots.txt with these rules:
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.
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.
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.
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.
Simply uninstall the plugin. The uninstall process will remove all settings and clean up your physical robots.txt if applicable.
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.
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.
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.
No! The plugin handles everything automatically. Just configure your preferences in the settings page and save.
ayudawp_acs_predefined_bots filter hook for developers to extend the bots list