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

Linking to Files in Root Directory Outside of WP Installation

Your first attempt does not work because get_template_directory_uri returns the URL to your theme directory. Your second attempt will work, but if you don’t want to hard code the domain you could either try using a root relative path or fetching the domain portion of your site url. Relative path: wp_register_script(‘circle-bounce’, ‘/js/general.js’, array( ‘jquery’, ‘jquery-effects-core’, … Read more