Quantcast
Viewing all articles
Browse latest Browse all 22088

SpankMarvin on "Mobile Redirect with a difference."

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' );

Viewing all articles
Browse latest Browse all 22088

Trending Articles