Using subdomain m.website.com for mobile theme?
You can have a subdomain, but you cannot detect mobile users reliably. And you shouldn’t. How to use a subdomain with the same content In your wp-config.php, look at $_SERVER[‘HTTP_HOST’]. If it matches m.example.com, enforce the current domain as main domain with … const DOMAIN_CURRENT_SITE = ‘m.example.com’; … and filter the active theme: add_filter( ‘stylesheet’, … Read more