mirror of
https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2025-08-17 18:11:08 +08:00
22 lines
413 B
PHP
22 lines
413 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Disallow GPTBot
|
|
* Plugin URI: https://platform.openai.com/docs/gptbot
|
|
*/
|
|
|
|
add_filter(
|
|
'robots_txt',
|
|
static function ($output, $is_public) {
|
|
$lines = [
|
|
'User-agent: GPTBot',
|
|
'Disallow: /',
|
|
];
|
|
if (!$is_public) {
|
|
return $output;
|
|
}
|
|
return implode("\n", $lines) . "\n\n" . $output;
|
|
},
|
|
-1,
|
|
2
|
|
);
|