phpfunction custom_404_page(){if (is_404()){wp_redirect(home_url('404-error'));// Change '404-error' to your actual 404 page slugexit()}}add_action('template_redirect','custom_404_page')