how to get my WP site’s IP? [closed]

This is more a general hosting question, rather than WordPress. Nonetheless, since you mentioned that you have your website on WordPress.com, you can have your new domain point to your WordPress site by it’s CNAME. In your case, your CNAME would look be example.wordpress.com (change example to your actual site). This is the recommended approach … Read more

Redirect loop when forwarding to mobile site

You need to check that you aren’t already on the mobile site: function redirecting_to_mobile_site() { if ( $_SERVER[‘SERVER_NAME’] !== ‘m.example.com’ && wp_is_mobile() ) { wp_redirect( ‘http://m.example.com’ . $_SERVER[‘REQUEST_URI’], 301 ); exit; } } add_action( ‘template_redirect’, ‘redirecting_to_mobile_site’ ); You’ll need to clear your browser cache to properly test the fix.

WordPress MU with subdomain

Your blog subsite is working fine here. When you create a subsite it can take some time for the DNS to update. You may lower your TTL for faster updates. The blog shows a white page, but I think that’s because of there is no theme activated. Since your wp-admin link working.

Problem With DNS or WordPress installation>

This is a hosting question, as mentioned above. However, if you are going to host your DNS for the addon domain on Siteground, then you need to specify the nameservers for Siteground on your registrar. If your DNS will be hosted somewhere other than Siteground, then you will specify the IP address of the installation … Read more