ibdesigner
12/5/2016 - 12:23 PM

Incarca tema de wordpress in functie de subdomaniu. [NETESTAT]

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;
});