wordpress-website-lifecycle/mu-plugins/_robots-gptbot.php
Viktor Szépe 9ef07fce06 Add gptbot
2023-09-02 23:44:39 +00:00

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
);