mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
185 B
Text
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');
|