Try this code instead?
function do_home_redirect() {
if( wp_is_mobile() && ( is_front_page() || is_home() ) ){
header('Location: http://google.com/');
exit;
}
}
add_action( 'init', 'do_home_redirect' );
Try this code instead?
function do_home_redirect() {
if( wp_is_mobile() && ( is_front_page() || is_home() ) ){
header('Location: http://google.com/');
exit;
}
}
add_action( 'init', 'do_home_redirect' );