0
Q:

wp_redirect to home page

wp_redirect( $url );
0
function redirect_to_home() {
  if(!is_admin() && is_page('2')) {
    wp_redirect(home_url());
    exit();
  }
}
add_action('template_redirect', 'redirect_to_home');
0

New to Communities?

Join the community