mirror of
https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2025-08-17 18:11:08 +08:00
22 lines
460 B
PHP
22 lines
460 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Disallow OSZKbot
|
|
* Plugin URI: https://webarchivum.oszk.hu/tartalomgazdaknak/technikai-tudnivalok-az-archivalasrol/
|
|
*/
|
|
|
|
add_filter(
|
|
'robots_txt',
|
|
static function ($output, $is_public) {
|
|
$lines = [
|
|
'User-agent: OSZKbot',
|
|
'Disallow: /',
|
|
];
|
|
if (!$is_public) {
|
|
return $output;
|
|
}
|
|
return implode("\n", $lines) . "\n\n" . $output;
|
|
},
|
|
-1,
|
|
2
|
|
);
|