WordPressで投稿者アーカイブを無効化するためのメモ。
WordPress管理画面から「外観」→「テーマエディター」→「function.php」に以下のコードを記述
function disable_author_archive( $query ){
if( !is_admin() && is_author() ){
$query->set_404();
status_header( 404 );
nocache_headers();
}
}
add_action( 'parse_query', 'disable_author_archive' );