Different homepage for mobile

PHOTO EMBED

Sat Sep 03 2022 08:49:29 GMT+0000 (Coordinated Universal Time)

Saved by @Nandrei89 #link

add_action( 'wp', 'homepage_mobile_redirect' );
function homepage_mobile_redirect() {
    if ( wp_is_mobile() AND is_front_page() ) {
        wp_redirect( '/mobileshop/', 301 );
        exit;
    }
}


-or-
  
  
  if (document.documentElement.clientWidth <760) {
 window.location = "/webshop";
}
content_copyCOPY