Добавьте в
robots.txt
User-agent: *
Disallow: /author/*
ИЛИ с версии 5.7 есть функция wp_robots() для вывода мета-информации, закрывать страницы авторов так:
add_filter( 'wp_robots', 'skill_robots' );
if ( !function_exists( 'skill_robots' ) ) {
function skill_robots( $robots ) {
if ( is_author() ) {
$robots['noindex'] = true;
$robots['nofollow'] = true;
}
return $robots;
}
}
До 5.7 можно вывести просто строку в wp_head
add_action( 'wp_head', 'skill_robots', 1 );
if ( !function_exists( 'skill_robots' ) ) {
function skill_robots() {
if ( is_author() ) {
echo '<meta name="robots" content="noindex nofollow">';
}
}
}