404エラーが発生した時のために専用ページを作るのもありですが、とりあえずフロントページにリダイレクトする方法。
functions.php
add_action( ‘template_redirect’, ‘is404_redirect_home’ );
function is404_redirect_home() {
if( is_404() ){
wp_safe_redirect( home_url( ‘/’ ) );
exit();
}
}
404エラーが発生した時のために専用ページを作るのもありですが、とりあえずフロントページにリダイレクトする方法。
functions.php
add_action( ‘template_redirect’, ‘is404_redirect_home’ );
function is404_redirect_home() {
if( is_404() ){
wp_safe_redirect( home_url( ‘/’ ) );
exit();
}
}