add_action('template_redirect', 'redirect_author_page');
function redirect_author_page() {
if (is_author()) {
wp_redirect(home_url(), 301);
exit;
}
}
add_action('template_redirect', 'redirect_author_page');
function redirect_author_page() {
if (is_author()) {
wp_redirect(home_url(), 301);
exit;
}
}