Incarca tema de wordpress in functie de subdomaniu. [NETESTAT]
define ('DOMAIN_CURRENT_SITE', $_SERVER['SERVER_NAME'] );
add_filter( 'stylesheet', function( $stylesheet ) {
if ( 'm.example.com' === DOMAIN_CURRENT_SITE )
return 'mobile-theme';
return $stylesheet;
});