HOME > WordPress> function.php

セキュリティ対策

ログインIDの漏洩を防ぐ

//authorページをリダイレクト
function author_archive_redirect() {
   if( is_author() ) {
       wp_redirect( home_url());
       exit;
   }
}
add_action( 'template_redirect', 'author_archive_redirect' );