{"id":137269,"date":"2015-02-12T07:00:00","date_gmt":"2015-02-12T12:00:00","guid":{"rendered":"http:\/\/premium.wpmudev.org\/blog\/?p=137269"},"modified":"2022-03-02T04:17:50","modified_gmt":"2022-03-02T04:17:50","slug":"ultimate-guide-multisite","status":"publish","type":"post","link":"https:\/\/wpmudev.com\/blog\/ultimate-guide-multisite\/","title":{"rendered":"The Ultimate Guide to WordPress Multisite"},"content":{"rendered":"<p>Here at WPMU DEV, we&#8217;re more than a bit keen on WordPress Multisite. We&#8217;ve been developing plugins for Multisite since the old days when it was WordPress MU, and we use it to power <a href=\"http:\/\/edublogs.org\" target=\"_blank\">Edublogs<\/a>, a huge network of blogs for educators and students.<\/p>\n<p>Personally I also use Multisite a lot. I use it to host client websites, to create sites demonstrating techniques I outline in my books and tutorials, and to keep everything in one place.<\/p>\n<p>In this guide to Multisite, I&#8217;m going to show you everything you need to know to get started with Multisite and create your own network of blogs or sites.<\/p>\n<p>Continue reading, or jump ahead using these links:<\/p>\n<ul>\n<li><a href=\"#what-is-wordpress-multisite\">What Is a WordPress Multisite and How Is It different from a Single Site?<\/a><\/li>\n<li><a href=\"#uses-for-multisite\">When to Use a Multisite (with some examples)<\/a><\/li>\n<li><a href=\"#when-not-to-use-multisite\">When not to use Multisite<\/a><\/li>\n<li><a href=\"#activating-multisite\">How to activate Multisite on a new or existing WordPress installation<\/a><\/li>\n<li><a href=\"#managing-your-network\">Managing your network<\/a><\/li>\n<li><a href=\"#managing-and-maintaining-a-huge-network-of-sites\">Managing and Maintaining a Huge Network of Sites<\/a><\/li>\n<\/ul>\n<p>But first, let&#8217;s get some terminology straight. In this post I&#8217;m going to use the word <strong>network<\/strong>\u00a0and <strong>site<\/strong>\u00a0to refer to two different things:<\/p>\n<ul>\n<li><strong>Network<\/strong>\u00a0refers to the entire Multisite network, i.e. your WordPress installation<\/li>\n<li><strong>Site<\/strong>\u00a0refers to one of the blogs or sites created as part of the network.<\/li>\n<\/ul>\n<p>So when I refer to your site, I don&#8217;t mean your whole network of sites, but just one of the sites on it. Each network will have a main site, which is created when you install WordPress and which will probably use the main domain for\u00a0your WordPress installation: that&#8217;s still a site. I&#8217;ll explain this in more detail as we go along.<\/p>\n<p>So now we&#8217;ve got that sorted, let&#8217;s take a look at Multisite!<\/p>\n<h2 id=\"what-is-wordpress-multisite\">What is a WordPress Multisite?<\/h2>\n<p>The WordPress Codex defines Multisite as:<\/p>\n<div class=\"wpdui-blockquote wpdui-blockquote--center\"><blockquote><p>A feature of WordPress 3.0 and later versions that allows multiple virtual sites to share a single WordPress installation.<\/p><\/blockquote><\/div><!-- end wpdui-blockquote -->\n<p>This means that by installing WordPress just once on your server, you can run as many sites\u00a0as you want, and I really mean as many as you want. At the time of writing, WordPress.com <a href=\"https:\/\/managewp.com\/14-surprising-statistics-about-wordpress-usage\" target=\"_blank\">hosts approximately 37 million sites<\/a>, and our own <a href=\"http:\/\/edublogs.org\" target=\"_blank\">Edublogs.org<\/a> hosts nearly 3 million educational sites.\u00a0You won&#8217;t be able to host millions of sites on a standard Multisite installation though.<\/p>\n<p>The great thing about Multisite is that the WordPress installation itself is almost exactly the same as a standard installation: it has the same folder structure, the same core files and the same code base. This means that installing a Multisite network isn&#8217;t much more complicated than installing a standard WordPress site, and updating Multisite is exactly the same as updating any WordPress site. All of your network&#8217;s themes and plugins are stored just once, no matter how many sites you use them on, meaning you&#8217;ll be using a lot less server space than if you used\u00a0a separate WordPress installation\u00a0for each site.<\/p>\n<p>But there are some differences\u00a0in three\u00a0areas: in the admin screens and the way you use them, in the files in your WordPress installation, and in the database tables.<\/p>\n<h3>How the Multisite Admin\u00a0Screens Are Different<\/h3>\n<p>When you activate Multisite, <a href=\"https:\/\/wpmudev.com\/blog\/options-wordpress-multisite-network\/\" target=\"_blank\">some extra screens will be added to your admin<\/a>, for managing the network. You can see below the there&#8217;s a special dashboard for managing the network.<\/p>\n<p>These are accessible only to the Super Admin who manages the network (that&#8217;s you) and will let you install themes and plugins and create and manage sites. I&#8217;ll take you through these in more detail later in this post.<\/p>\n<p>The admin screens that each site admin can access are similar to a standard WordPress site, but a couple\u00a0are missing: site admins can&#8217;t install themes or plugins but can only activate those that have been installed on the network.<\/p>\n<p>But apart from that, the screens will be very familiar to anyone who has used WordPress.<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/multisite-dashboard-1.png\" alt=\"The WordPress Multisite Dashboard.\" width=\"1050\" height=\"603\" \/><figcaption class=\"wp-caption-text\">The WordPress Multisite Dashboard.<\/figcaption><\/figure>\n<\/div>\n<h3>How the Multisite Files Are Different<\/h3>\n<p>There are just two differences to the files and folders in a Multisite network: the <code>wp-config.php<\/code> file and the <code>uploads<\/code> folder.<\/p>\n<p>The <code>wp-config.php<\/code> file will have some extra lines added which activate Multisite and tell WordPress how it&#8217;s running. The <code>uploads<\/code> folder will contain a subfolder for each site on the network, with the site&#8217;s numerical ID as its name. Files uploaded to each site are stored in that site&#8217;s folder, in the same structure as you would normally expect to see them in the <code>uploads<\/code> folder in a standard WordPress installation.<\/p>\n<p>But the good news is that WordPress manages the file structure for you, so you don&#8217;t need to worry about it!<\/p>\n<h3>How the Database is Different with\u00a0Multisite<\/h3>\n<p>The final difference is one you really don&#8217;t have to worry about unless you&#8217;re into that sort of thing: the database tables. The database for a standard WordPress installation will have 11 database tables for storing your site&#8217;s content and settings. With a Multisite network, nine of these are duplicated for each site, meaning that if you&#8217;ve got a lot of sites, you&#8217;ll have a lot of tables. This keeps the content for each site separate.<\/p>\n<p>Again this is something that goes on behind the scenes and which you should never need to worry about.<\/p>\n<h2 id=\"uses-for-multisite\">Uses for Multisite<\/h2>\n<p><a href=\"https:\/\/wpmudev.com\/blog\/options-wordpress-multisite-network\/\" target=\"_blank\">Multisite has a lot of applications<\/a>, but I like to think of them as coming under three categories:<\/p>\n<ul>\n<li>A privately run network of sites or blogs for an individual or business<\/li>\n<li>A network of client sites\u00a0installed and administered by a developer or agency<\/li>\n<li>A network which people can add their own sites to, either for free or by paying a subscription.<\/li>\n<\/ul>\n<p>I have my own network of personal sites on my blog. I use this to create sites to demonstrate techniques I write about in my books and tutorials, and to try out new ideas. You might want to create a network to host your own personal sites if you have more than one, and with <a href=\"https:\/\/wpmudev.com\/blog\/domain-mapping-wordpress\/\" target=\"_blank\">domain mapping plugins<\/a> you can even use a different domain name for each site.<\/p>\n<p>Businesses also use Multisite to host multiple sites which they administer and manage themselves: an example is <a href=\"http:\/\/www.bbcamerica.com\" target=\"_blank\">BBC America<\/a>, which uses Multisite to host its network of blogs.<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/bbc-america.jpg\" alt=\"This giant WordPress Multisite install is the home for all the BBC America shows. Each site has its own child theme which is powered by the main framework.\" width=\"1050\" height=\"600\" \/><figcaption class=\"wp-caption-text\">This giant WordPress Multisite install is the home for all the BBC America shows. Each site has its own child theme which is powered by the main framework.<\/figcaption><\/figure>\n<\/div>\n<p>I also manage a network of client sites for my agency, Compass Design. I moved all of my client sites to Multisite a year or so ago after years of keeping them all separate. It means that when I need to update WordPress (or a theme or plugin) I only have to do it once, and I have one place from which to manage all of my client sites. I use\u00a0domain mapping so each client can have\u00a0their own domain, and give them admin access for their own sites if they need it (which not all do). The benefit of this is that it means your site admins have more capabilities than an editor would on a standard site but can&#8217;t install themes and plugins which might break their site or your network.<\/p>\n<p>There are also plenty of examples\u00a0of Multisite networks which let people create their own site. The biggest, <a href=\"https:\/\/wordpress.com\" target=\"_blank\">WordPress.com<\/a>, hosts millions of sites and is free to use, with premium themes and plugins available at a cost.<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/wordpress-dot-com.png\" alt=\"WordPress.com \u2013\u00a0the O.G.\" width=\"1050\" height=\"605\" \/><figcaption class=\"wp-caption-text\">WordPress.com \u2013\u00a0the O.G.<\/figcaption><\/figure>\n<\/div>\n<p>Our\u00a0own <a href=\"http:\/\/edublogs.org\" target=\"_blank\">Edublogs<\/a> enables schools and educators to create a blog, and powers million of sites using one Multisite Network. Users create a blog for free, with the option to move to a Pro account with extra features.<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/edublogs-1.png\" alt=\"Edublogs is the largest free blogging service for education in the world \u2013 and runs on Multisite.\" width=\"1050\" height=\"600\" \/><figcaption class=\"wp-caption-text\">Edublogs is the largest free blogging service for education in the world \u2013 and runs on Multisite.<\/figcaption><\/figure>\n<\/div>\n<h2 id=\"when-not-to-use-multisite\">When Not to Use Multisite<\/h2>\n<p>Although Multisite is great (yes it is!) and has plenty of uses, it&#8217;s not always going to be the tool that you need. Here are some examples of when you don&#8217;t need Multisite:<\/p>\n<ul>\n<li>You want to create a single site or blog and don&#8217;t plan to create any more in future.<\/li>\n<li>You&#8217;re creating sites for multiple clients but each will be hosted separately, maybe with clients having their own hosting providers.<\/li>\n<li>Each site you&#8217;re creating will need its own separate database (maybe for security reasons).<\/li>\n<li>Each site will need its own IP address.<\/li>\n<li>Site administrators will need to install their own\u00a0themes or plugins.<\/li>\n<li>You&#8217;ll need to move your sites to another server (that this can be done but is more involved than for a standard\u00a0site, and can be avoided completely if all you need is separate domains).<\/li>\n<li>Your hosting doesn&#8217;t\u00a0provide the necessary <a href=\"http:\/\/codex.wordpress.org\/Before_You_Create_A_Network#Server_Requirements\" target=\"_blank\">server requirements<\/a>.<\/li>\n<li>You don&#8217;t have access to the files on your server for editing.<\/li>\n<\/ul>\n<p>If one of the above applies to you, I would recommend sticking with a single site WordPress installation. If you do need a network but your hosting setup prevents you from doing so, I&#8217;d recommend switching providers!<\/p>\n<h2 id=\"activating-multisite\">Activating\u00a0Multisite<\/h2>\n<p>Now that you know what Multisite is and how it can benefit you, it&#8217;s time to learn how to activate it. How you do this will depend on whether your site is a brand new one or an established one. It will also depend on whether you want to use subdomains\u00a0or subdirectories for your network&#8217;s sites:<\/p>\n<ul>\n<li>Using subdomains means that each site will have a url like <code>http:\/\/site1.yournetwork.com<\/code>. If you&#8217;re planning to let people create their own site, you&#8217;ll need to have wild card subdomains activated for your hosting.<\/li>\n<li>Using subdirectories means that each site will have a url like <code>http:\/\/yournetwork.com\/site1<\/code>. You can&#8217;t choose this option on an established site that you&#8217;re converting to a network as it may cause clashes with urls already created in your site.<\/li>\n<\/ul>\n<p>Let&#8217;s start by activating Multisite in a brand new installation.<\/p>\n<h3>Activating Multisite\u00a0on a Fresh WordPress Installation<\/h3>\n<p>Activating Multisite when you install WordPress involves a few extra steps. Firstly, you need to install WordPress and allowing a network.<\/p>\n<ol>\n<li>Install WordPress in the normal way. <a href=\"https:\/\/wordpress.org\/download\/\" target=\"_blank\">Download WordPress<\/a> and use the &#8220;Famous 5 minute install&#8221; to <a href=\"http:\/\/codex.wordpress.org\/Installing_WordPress\" target=\"_blank\">install it<\/a> on your server or local machine.<\/li>\n<li>Open your <code>wp-config.php<\/code> file which you&#8217;ll find in the folder where you installed WordPress. Find the line that reads:<\/li>\n<\/ol>\n<div class=\"gist\" data-gist=\"d5819a0e58d2d0da69d3bf30ac85bb0a\" data-gist-file=\"gistfile1.txt\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/d5819a0e58d2d0da69d3bf30ac85bb0a.js?file=gistfile1.txt\">Loading gist d5819a0e58d2d0da69d3bf30ac85bb0a<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<ol start=\"3\">\n<li>\u00a0Immediately above that line, create a new line that reads as follows:<\/li>\n<\/ol>\n<div class=\"gist\" data-gist=\"2aa2a1abf9a9f09a6bc7f0363d95a10d\" data-gist-file=\"gistfile1.txt\"><a class=\"loading\" href=\"https:\/\/gist.github.com\/2aa2a1abf9a9f09a6bc7f0363d95a10d.js?file=gistfile1.txt\">Loading gist 2aa2a1abf9a9f09a6bc7f0363d95a10d<\/a><div class=\"gist-consent-notice\" style=\"display:none\"><p>Please <a href=\"javascript:Cookiebot.renew()\">update your cookie preferences<\/a> to enable preference cookies to view this gist.<\/p><\/div><\/div>\n<ol start=\"4\">\n<li>\u00a0Now save your <code>wp-config.php<\/code> file.<\/li>\n<\/ol>\n<p>The next step is to visit the WordPress admin screens and install Multisite.<\/p>\n<ol>\n<li>In the WordPress admin, go to <strong>Tools &gt;Network Setup<\/strong>. You&#8217;ll be prompted to choose subdomains\u00a0or subdirectories for your installation: choose the one that works for your network.<\/li>\n<li>Edit the title of your network and email address of the network administrator when prompted, or leave them as they are.<\/li>\n<li>Click the <strong>Install<\/strong> button.<\/li>\n<\/ol>\n<p>The final step is to copy some\u00a0code\u00a0provided by WordPress into your <code>wp-config.php<\/code>\u00a0and <code>.htaccess<\/code> files.<\/p>\n<ol>\n<li>You will be taken to the Network Install screen:<\/li>\n<\/ol>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/installing-wordpress-multisite-network-install-1.png\" alt=\"Enabling a Multisite network involves editing two crucial files.\" width=\"1050\" height=\"845\" \/><figcaption class=\"wp-caption-text\">Enabling a Multisite network involves editing two crucial files.<\/figcaption><\/figure>\n<\/div>\n<ol start=\"2\">\n<li>Open each of your <code>wp-config.php<\/code> and<code> .htaccess<\/code> files and edit them in line with the text provided on the screen. If you can&#8217;t find <code>.htaccess<\/code> on your server, it may because hidden files aren&#8217;t visible: change the settings in your code editor if you&#8217;re using one to access your files.<\/li>\n<li>Save both files.<\/li>\n<\/ol>\n<p>WordPress Multisite will now be installed. You&#8217;ll need to log in again, and when you do so you&#8217;ll see the Multisite dashboard.<\/p>\n<p>Now you can start adding sites, plugins, themes and more.<\/p>\n<h3>Activating Multisite on an Established WordPress Installation<\/h3>\n<p>If you&#8217;re converting your existing site to a Multisite network, you follow the same steps as above with one exception: you won&#8217;t be given the option to select subdomains or subdirectories. If your site has been in existence for more than a month, you&#8217;ll be forced to use subdomains.<\/p>\n<h3>Activating Multisite using The Hub<\/h3>\n<p>If you are a WPMU DEV member, activating Multisite on a new or existing WordPress installation is easy.<\/p>\n<p>To do this, <a href=\"https:\/\/wpmudev.com\/blog\/get-the-most-from-hub\/\" target=\"_blank\" rel=\"noopener\">go to The Hub<\/a> and either add a new site or select an existing site from your list, then go to Tools &gt; Multisite and click on the Off\/On toggle switch.<\/p>\n<figure id=\"attachment_203302\" class=\"wp-caption aligncenter\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-203302\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/activate-multisite.png\" alt=\"The Hub - Tools - Multisite\" width=\"600\" height=\"377\" \/><figcaption class=\"wp-caption-text\">The Hub lets you easily convert a WordPress installation into a Multisite network.<\/figcaption><\/figure>\n<p>You will be asked to select the type of structure for adding sites to your Multisite network, i.e. <a href=\"https:\/\/wpmudev.com\/blog\/multisite-subdomains-subdirectories\/\" target=\"_blank\" rel=\"noopener\">subdomains or subdirectories<\/a>.<\/p>\n<p>After selecting your choice, click the Continue button to convert your WordPress site into a WordPress multisite network.<\/p>\n<figure id=\"attachment_203303\" class=\"wp-caption aligncenter\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-203303 size-full\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/multisite-options.png\" alt=\"Hub - Convert to Multisite\" width=\"600\" height=\"526\" \/><figcaption class=\"wp-caption-text\">Choose a subdirectory or subdomain structure for your Multisite network.<\/figcaption><\/figure>\n<p>As the change from a single site to a Multisite network is irreversible, you will be asked to confirm your decision before continuing. Once your site has been converted (the process will take anywhere from a few seconds to a couple of minutes, depending on the size of your existing site), your new Multisite network will be activated and ready to go.<\/p>\n<p>For more details on installing and activating Multisite from The Hub, <a href=\"https:\/\/wpmudev.com\/docs\/hosting\/tools-features\/#multisite\" target=\"_blank\" rel=\"noopener\">check out our documentation section<\/a>. If you&#8217;re not a WPMU DEV member, we recommend choosing one of our <a href=\"https:\/\/wpmudev.com\/\" target=\"_blank\" rel=\"noopener\">risk-free membership options<\/a>.<\/p>\n<h2 id=\"managing-your-network\">Managing Your Network<\/h2>\n<p>Now your network is in place and running just one site, which is the main site for the network. This site is no different from the other sites which will be added to your network: it has the same admin screens and the same permissions.<\/p>\n<p>Managing your network will consist of:<\/p>\n<ul>\n<li>Creating and managing sites<\/li>\n<li>Installing and activating themes<\/li>\n<li>Installing and deactivating plugins<\/li>\n<li>Installing updates<\/li>\n<\/ul>\n<p>Let&#8217;s start\u00a0by creating a site.<\/p>\n<h3>Creating a Site<\/h3>\n<p>You can create sites manually or you can install a plugin that lets users create their own. I&#8217;ll cover how you do this with a plugin later, but first, here&#8217;s how to create a site manually.<\/p>\n<ol>\n<li>\u00a0Go to the network admin screens by clicking on <strong>My Sites &gt; Network Admin<\/strong> in the admin menu.<\/li>\n<li>Go to <strong>Sites &gt; Add New<\/strong>.<\/li>\n<li>Type in the site address (i.e. the subdomain or subdirectory), the site title\u00a0and the email address of the site administrator, as shown in the screenshot:<\/li>\n<\/ol>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/multisite-add-new-site-1.png\" alt=\"Adding a new site to your network.\" width=\"1050\" height=\"600\" \/><figcaption class=\"wp-caption-text\">Adding a new site to your network.<\/figcaption><\/figure>\n<\/div>\n<p>The new site will be created. If you&#8217;ve used your own email address for the site admin, you&#8217;ll be able to see it when you hover over the<strong> My Sites <\/strong>link in the admin menu. If you&#8217;re not the administrator, you can still see it from your network admin screens. Click <strong>Sites &gt; All Sites<\/strong> to view all of your sites. Below you can see just a selection of the sites in the network I&#8217;ve set up on my own domain:<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/multisite-network-sites-1.png\" alt=\"Viewing the sites in your network.\" width=\"1050\" height=\"600\" \/><figcaption class=\"wp-caption-text\">Viewing the sites in your network.<\/figcaption><\/figure>\n<\/div>\n<p>You can also create a new site from the front end of your main site, using a plugin.<\/p>\n<h3>Installing and Activating Themes<\/h3>\n<p>Only the super administrator of a network can install themes and make them available for sites to use. You can do this in one of two ways: you can allow them for individual sites or you can network activate them. A theme can only be activated on a site if it&#8217;s been network enabled\u00a0or enabled\u00a0for that site.<\/p>\n<p>Here&#8217;s how you install a theme and network enable\u00a0it:<\/p>\n<ol>\n<li>In the Network admin screens, go to <strong>Themes &gt; Add New<\/strong> and install the theme in the same way as you would for a standard WordPress site.<\/li>\n<li>On the &#8216;Installing Theme&#8217; screen that appears, click the <strong>Network Enable<\/strong> link.<\/li>\n<\/ol>\n<p>Alternatively, to network enable a theme you&#8217;ve already installed, click on <strong>Themes<\/strong> to go to the Themes screen, then click the <strong>Network Enable<\/strong> link below a theme.<\/p>\n<p>You can also enable a theme just for one\u00a0site. This can be useful if your network runs lots of sites each of which will need a different theme, for example if you&#8217;re hosting client sites. Enabling themes by site means that other themes won&#8217;t be available to sites which don&#8217;t have them enabled, so there&#8217;s no risk of site admins accidentally activating the wrong theme.<\/p>\n<p>To do this, follow these steps:<\/p>\n<ol>\n<li>In the Network admin, click on <strong>Sites<\/strong> to view all of your sites.<\/li>\n<li>Hover\u00a0over the name of the site you want to enable the theme for and click the <strong>Edit<\/strong> link that appears.<\/li>\n<li>Click the <strong>Themes<\/strong> tab to view the themes settings screen for the site:<\/li>\n<\/ol>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/enabling-themes-multisite.png\" alt=\"You can enable themes for each of the sites in your network.\" width=\"1050\" height=\"724\" \/><figcaption class=\"wp-caption-text\">You can enable themes for each of the sites in your network.<\/figcaption><\/figure>\n<\/div>\n<ol start=\"4\">\n<li>Under the theme you want to enable, click the <strong>Enable<\/strong> link.<\/li>\n<\/ol>\n<p>Now when you go to the site administration screens for that site and click on <strong>Appearance &gt; Themes<\/strong>, you&#8217;ll see the theme you&#8217;ve enabled included in the available themes for activation:<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/change-site-theme-multisite.png\" alt=\"Activating themes on a sub-site.\" width=\"1050\" height=\"729\" \/><figcaption class=\"wp-caption-text\">Activating themes on a sub-site.<\/figcaption><\/figure>\n<\/div>\n<h3>Installing\u00a0and Activating Plugins<\/h3>\n<p>Plugins also have to be installed by the network administrator, but they work slightly differently with regard to the sites on the network. You can&#8217;t enable a plugin for an individual site. Instead, you can network activate it, so it runs on every site on the network, or you can just install it, so that individual sites can choose to activate it.<\/p>\n<p>Network activating plugins is useful if you&#8217;ve written or downloaded a plugin to provide features which you want all of your sites to have, for example on my network of client sites I&#8217;ve installed the <a href=\"https:\/\/wpmudev.com\/project\/snapshot\/\" target=\"_blank\">Snapshot<\/a> plugin to ensure that all of the sites are backed up regularly. Here&#8217;s how to install and network activate a plugin:<\/p>\n<ol>\n<li>In the network admin screens, got to <strong>Plugins &gt; Add New<\/strong> and install the plugin as you would in a normal WordPress site.<\/li>\n<li>In the Installing Plugin screen, click the <strong>Network Activate<\/strong> link.<\/li>\n<\/ol>\n<p>That&#8217;s it! The plugin will now run on all the sites in your network and site admins won&#8217;t be able to disable it.<\/p>\n<p>But what if you want to just activate the plugin on one site? That&#8217;s done by installing the plugin as a network admin and then activating the plugin if you have site admin privileges for the site.<\/p>\n<ol>\n<li>In the network admin screens, got to <strong>Plugins &gt; Add New<\/strong> and install the plugin as you would in a normal WordPress site.<\/li>\n<li>In the Installing Plugin screen,\u00a0click the <strong>Return to Plugin Installer<\/strong> link.<\/li>\n<li>Visit the site admin screens for the site you want to activate the plugin for and click the\u00a0<strong>Plugins<\/strong> link in the admin menu.<\/li>\n<li>Under the plugin you want to activate, click the <strong>Activate<\/strong> link as you would in a normal WordPress site.<\/li>\n<\/ol>\n<p>You&#8217;ll notice that in the Plugins screen for a site admin, there&#8217;s only the option to activate or deactivate plugins, not to delete or update them:<\/p>\n<div  class=\"wpdui-pic-large   \" >&gt;\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/enabling-site-plugins.png\" alt=\"Network enabling plugins.\" width=\"1050\" height=\"729\" \/><figcaption class=\"wp-caption-text\">Network enabling plugins.<\/figcaption><\/figure>\n<\/div>\n<h3>Managing Sites<\/h3>\n<p>There are other screens you can use to manage the sites on your network, accessible via the Sites screen in the network admin. These are:<\/p>\n<ul>\n<li>Info<\/li>\n<li>Users<\/li>\n<li>Themes<\/li>\n<li>Settings<\/li>\n<\/ul>\n<p>The <strong>Info<\/strong>\u00a0screen contains basic information on the site. This is where you would change the domain for the site if needed, or update its status.<\/p>\n<p>The <strong>Users<\/strong> screen lists all of the users for this site, who will also be users on your network. You can use this screen to remove users from a site or to add a user to a site if they&#8217;ve\u00a0already been added to\u00a0your network (more of which shortly). You can also change user roles from here. Site admins can also add users from the Users section of their own admin as you would for a normal WordPress site: they can add users not already registered on the network as well.<\/p>\n<p>The <strong>Settings<\/strong> screen gives you access to all of the settings for the site, some of which site admins have access to via the Settings section of their admin menu. This includes everything\u00a0in the site&#8217;s options table in the database, including the site title, description, theme and more. I would advise against changing any settings you&#8217;re not familiar with.<\/p>\n<h3>Managing Your Network: Updates, Users, and Settings<\/h3>\n<p>As well as managing the individual sites in your network, you&#8217;ll need to manage the network itself. This will include:<\/p>\n<ul>\n<li>Updating WordPress<\/li>\n<li>Updating themes and plugins<\/li>\n<li>Managing users<\/li>\n<li>Customizing the settings.<\/li>\n<\/ul>\n<p>Let&#8217;s take a look at each of these in turn.<\/p>\n<p><strong>Updates<\/strong><\/p>\n<p>Updating themes, plugins, and WordPress itself via the network admin screens is straightforward: you&#8217;ll see a notification if any of your code needs updating and you simply update it in the same way as you would for a normal site.\u00a0Updating WordPress is a two-step process: you need to install the update and then update the network\u00a0of sites. This is just a case of clicking a couple of extra links which WordPress will guide you through.<\/p>\n<p><strong>Users<\/strong><\/p>\n<p>The Users screen works in the same way as for a standard WordPress site: it will list all of the users on your network and let you edit and delete them. This will include users that\u00a0site admins have added to your site as well as users who&#8217;ve signed up for a site.<\/p>\n<p>The one main difference is that the Users screen tells you which sites a user has access to. If you want to add a user to a site, you do so via the Users tab in the site settings.<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/multisite-network-users.png\" alt=\"Adding users to your network.\" width=\"1050\" height=\"560\" \/><figcaption class=\"wp-caption-text\">Adding users to your network.<\/figcaption><\/figure>\n<\/div>\n<p><strong>Settings<\/strong><\/p>\n<p>You use the Network Settings screen to customize the way your network is used:<\/p>\n<div  class=\"wpdui-pic-large   \" >\n<figure class=\"wp-caption alignnone\" data-caption=\"true\"><img loading=\"lazy\" decoding=\"async\" class=\"attachment-1050x1050 size-1050x1050\" src=\"https:\/\/wpmudev.com\/blog\/wp-content\/uploads\/2015\/02\/multisite-network-settings-1.png\" alt=\"Multisite network settings.\" width=\"1050\" height=\"708\" \/><figcaption class=\"wp-caption-text\">Multisite network settings.<\/figcaption><\/figure>\n<\/div>\n<p>Settings you can customize are:<\/p>\n<ul>\n<li>The title of your network<\/li>\n<li>The network admin&#8217;s email address<\/li>\n<li>Registration settings: whether users can register accounts and\/or sites, whether site admins can add new users, and email domains and site names which are banned.<\/li>\n<li>New site settings: the content of the welcome email for site admins and users and the first page, post and comment created on new sites.<\/li>\n<li>Upload settings: file types permitted and maximum file size<\/li>\n<li>Language settings: the default language<\/li>\n<li>Menu settings: enable or disable the plugins menu item for site admins. If you disable this they won&#8217;t be able to activate or deactivate plugins.<\/li>\n<\/ul>\n<h2 id=\"managing-and-maintaining-a-huge-network-of-sites\">Managing and Maintaining a Huge Network of Sites<\/h2>\n<p>The examples I gave above of huge, successful Multisite networks will store vast amounts of data and receive millions of visits across their network every day. Clearly this isn&#8217;t something your site can handle if it&#8217;s installed on a shared server with\u00a0a cheap hosting plan, so as your network grows you&#8217;ll need to make changes to the way you manage your data and serve up content to accommodate the extra data and traffic.<\/p>\n<p>To learn more about how this is done, see our\u00a0post about <a href=\"https:\/\/wpmudev.com\/blog\/scaling-wordpress-wpmu-buddypress-like-edublogs\/\" target=\"_blank\">how we scaled Edublogs<\/a> to meet the needs of hundreds of thousands\u00a0of blogs (at the time of the post) and millions of users.<\/p>\n<h2>Conclusion<\/h2>\n<p>I hope I&#8217;ve convinced you that WordPress Multisite makes WordPress even more powerful. It lets you create more than one site with just the one WordPress installation, helping you to keep all of your own sites in one place or let others create their own sites which you can make money from.<\/p>\n<p>Activating Multisite just takes a few extra steps once you&#8217;ve installed WordPress, and managing your network and creating sites in\u00a0it isn&#8217;t complicated. As you&#8217;ve seen, the screens do look slightly different but won&#8217;t be unfamiliar to anyone with experience of managing a standard WordPress site.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Not sure about whether or not to take the leap and start using WordPress Multisite? In this comprehensive guide we cover everything from what it is and how to set it up and how to create your own network of successful sites.<\/p>\n","protected":false},"author":347011,"featured_media":199311,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"blog_reading_time":"","wds_primary_category":0,"wds_primary_tutorials_categories":0,"footnotes":""},"categories":[1117],"tags":[2876],"tutorials_categories":[],"class_list":["post-137269","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-multisite","tag-network-admin"],"_links":{"self":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/137269","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/users\/347011"}],"replies":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/comments?post=137269"}],"version-history":[{"count":36,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/137269\/revisions"}],"predecessor-version":[{"id":218400,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/posts\/137269\/revisions\/218400"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/media\/199311"}],"wp:attachment":[{"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/media?parent=137269"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/categories?post=137269"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/tags?post=137269"},{"taxonomy":"tutorials_categories","embeddable":true,"href":"https:\/\/wpmudev.com\/blog\/wp-json\/wp\/v2\/tutorials_categories?post=137269"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}