WordPress 404をトップページにリダイレクト

2023年7月7日

functions.phpに以下を追加。

// 404をトップページに値ダイレクト
add_action( 'template_redirect', 'is404_redirect_home' );
function is404_redirect_home() {
  if ( is_404() ) {
    wp_safe_redirect( home_url( '/' ) );
    exit();
  }
}
PAGE TOP