Code-Snippets-Functions/Execute a function on a child site/WordPress/redirect-all-404-to-homepage.txt

7 lines
185 B
Text

function wp_redirect_404_to_homepage() {
if (is_404()) {
wp_redirect(home_url(), 301);
exit;
}
}
add_action('template_redirect', 'wp_redirect_404_to_homepage');