Web Development & WordPress

Redirect All 404 Error page to Homepage Without Plugins

So, here is the code which you need to put in your theme’s function.php and save it and you are done. Basically here i tried not to use plugins and did it simplest way.

function redirect_404_to_homepage() {
    if (is_404()) {
        wp_redirect(home_url('/'));
        exit;
    }
}
add_action('template_redirect', 'redirect_404_to_homepage');

Leave a comment