Wordpress multisite with same content

Trying to accomplish the following. Any help / advice is greatly appreciated.

1) I have multiple domain names (e.g., site1.com, site2.com, site3.com). 2) I need each domain to display the same content BUT 3) Show a different wordpress theme.Plugins are same...etc

Thank you

Topic network-admin multisite themes Wordpress

Category Web


This would take a little bit of work, but you could adapt code from this plugin:

http://www.mihaivalentin.com/different-wordpress-theme-depending-of-the-current-user/

First you would point all the domains to the same site.

This plugin changes the current theme depending on the user logged in. But you could change the logic to change the theme depending on the referrer address.

if($_SERVER['HTTP_HOST'] == 'site1.com' ):
//one theme
elseif( $_SERVER['HTTP_HOST'] == 'site2.com'):
//another theme
endif;

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.