Published
- 1 min read
wp_redirect to home page
The solution for this is noted below
wp_redirect to home page
Solution
function redirect_to_home() {
if(!is_admin() && is_page('2')) {
wp_redirect(home_url());
exit();
}
}
add_action('template_redirect', 'redirect_to_home');
Try other methods by searching on the site. That is if this doesn’t work