{"id":139679,"date":"2016-03-16T13:00:35","date_gmt":"2016-03-16T18:00:35","guid":{"rendered":"https:\/\/getflywheel.com\/?p=16017"},"modified":"2024-06-17T09:19:08","modified_gmt":"2024-06-17T14:19:08","slug":"the-basics-of-wordpress-multisite","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/","title":{"rendered":"The Basics of WordPress Multisite"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/wpengine.com\/support\/what-is-wordpress-multisite\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Multisite<\/a> is exactly what it sounds like: it\u2019s a way to have multiple sites that share a single WordPress installation. This install lives just once on your server, but you can run as many sites as you want with it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It\u2019s not as intimidating as it sounds. Multisite has the same structure, core files, and code files as a standard, single install, so really, it\u2019s not much different.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Updates are the same, and will be global throughout all the sites sharing it. Because everything is shared, themes and plugins are stored just once, no matter how many sites use them. Why does this matter? Well, if you\u2019re hosting lots of sites with virtually the same content, you\u2019ll use a lot less server space with WordPress Multisite. Also, it is easier to maintain because any updates will take place only once; there is no need to go through every site and update themes and plugins.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Differences from a Standard WordPress Install<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Interface<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Things look a little different in a Multisite environment. When you activate it, you will see some extra screens added to your admin screen, with options for managing the network. Here is the special dashboard for managing the network:<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"744\" height=\"399\" src=\"https:\/\/wpengine.com\/wp-content\/uploads\/2023\/07\/network_admin.png\" alt=\"\" class=\"wp-image-144714\" srcset=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2023\/07\/network_admin.png 744w, https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2023\/07\/network_admin-540x290.png 540w\" sizes=\"auto, (max-width: 744px) 100vw, 744px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Different database tables<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Tables are a bit different between single installs and Multisite, but these table names should ring a bell from a typical single install:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>wp_posts<\/li>\n\n\n\n<li>wp_postmeta<\/li>\n\n\n\n<li>wp_comments<\/li>\n\n\n\n<li>wp_commentmeta<\/li>\n\n\n\n<li>wp_terms<\/li>\n\n\n\n<li>wp_term_taxonomy<\/li>\n\n\n\n<li>wp_term_relationships<\/li>\n\n\n\n<li>wp_users<\/li>\n\n\n\n<li>wp_usermeta<\/li>\n\n\n\n<li>wp_options<\/li>\n\n\n\n<li>wp_links<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Note: We&#8217;re referring to the table&#8217;s prefixes using the default prefix of <code>wp_<\/code>, but often this prefix is changed for security reasons, so yours might look different.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Database Organization in WordPress Multisite Installation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">When converting to a Multisite, you are creating a \u201cnetwork\u201d of individual subsites. The first subsite is the site where the conversion to Multisite started from. When you think of the overall network, this is what the database sees as the overall structure. It classifies this network as a site, which is labeled as <code>wp_site<\/code> and then each subsite is classified as a blog, <code>wp_blogs<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Within the database, these individual subsites have tables with the same naming convention for each one. Every time a new subsite is created and added to the network, a new set of tables is created.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It may seem complex and hard to imagine how all of this is organized in the database. Luckily, there is a naming convention that helps keep things straight. Each set of tables is differentiated by the <code>blog_id<\/code> for the subsite used in the table prefix, such as <code>wp2_posts<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The following tables are subsite-specific:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>wp(xx)_posts<\/li>\n\n\n\n<li>wp(xx)_postmeta<\/li>\n\n\n\n<li>wp(xx)_comments<\/li>\n\n\n\n<li>wp(xx)_commentmeta<\/li>\n\n\n\n<li>wp(xx)_terms<\/li>\n\n\n\n<li>wp(xx)_term_taxonomy<\/li>\n\n\n\n<li>wp(xx)_term_relationships<\/li>\n\n\n\n<li>wp(xx)_options<\/li>\n\n\n\n<li>wp(xx)_links<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2016\/03\/mutlisite-info.png\" alt=\"Screenshot of subsite-specific tables in a WordPress network\" class=\"wp-image-16088\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">You may notice a few are missing here. What about <code>wp_users<\/code> and <code>wp_usermeta<\/code> tables? They aren\u2019t in the individual site list because they are now global across all the subsites in the network. When the greater network is installed, a couple of extra columns are added to the <code>wp_users<\/code> table.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There are a few more that are included in the Multisite environment. These are for the purpose of managing the network:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>wp_site<\/li>\n\n\n\n<li>wp_sitemeta<\/li>\n\n\n\n<li>wp_blogs<\/li>\n\n\n\n<li>wp_blog_versions<\/li>\n\n\n\n<li>wp_signups<\/li>\n\n\n\n<li>wp_registration_log<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This is a very basic explanation of the different database tables, but keep in mind that we\u2019re just scratching the surface.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Files<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The learning curve shouldn\u2019t be too big when it comes to files in a Multisite mindset. There are just a couple differences with the files and folders, specifically the <code>wp-config.php<\/code> file and the <code>wp-uploads<\/code> folder.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>wp-config.php<\/code> will have extra lines that actually activate Multisite and tell WordPress details on how to run it. The <code>wp-uploads<\/code> folder has an extra layer of folders. Each folder will contain a subfolder for each site, which coordinates with the site\u2019s numerical ID and name.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There\u2019s no need to move files manually; WordPress takes care of this for you.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u201cSuper Admin\u201d<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">We are all used to administrators with our WordPress sites; you most likely are one. With Multisite, there is an additional admin tier\u2014&#8221;Super Administrator,\u201d who manages the entire network. This role allows you to install themes, plugins, and create\/manage sites across the multisite network.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Site Administrator<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This will look familiar to you; the admin screens that each site admin can access are similar to a standard WordPress site. There are just a couple things that cannot be done by the site admin in Multisite: installing themes or plugins. Activating plugins is also limited; the site admin can only activate those that have been installed on the network.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">When to Use a Multisite<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">There are occasions where Multisite is sure to come in handy. Some that come to mind would be a network of sites\/blogs for a business, clients with multiple sites, and a network for users who want to add their own site. Remember, these are responsibilities of the \u201cSuper Admin\u201d and they are responsible for maintenance of this network.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As a designer, you may find a use for this if you have multiple sites. You could use Multisite to create a network to host all of your sites, such as a personal portfolio and then one for your business.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Knowing the goals of the sites and network will help you architect the best solution. Multisite is not for every scenario. If you just want a single site or blog, Multisite does not make the most sense. Just as if you are creating sites for multiple clients, and each is hosted separately, this is not the ideal tool. Keep the \u201cnetwork\u201d idea in mind, which will help you determine the best solution.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Remember, the database is organized a certain way with Multisite. If each site needs its own database, you will want to stick to a single install. If each site needs its own IP address, or your <a href=\"https:\/\/wpengine.com\/wordpress-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress hosting<\/a> provider doesn\u2019t have the right hosting technology for Multisite, Multisite may not be the best option. If the admin will need to install themes or plugins, remember that those options are limited to the \u201cSuper Admin\u201d and may be a limitation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Implement Multisite<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We\u2019ve talked an awful lot about Multisite, but how do we actually \u201cget\u201d it? One may think it\u2019s a plugin that you install. In reality, WordPress comes with Multisite capabilities and you just need to make a few simple customizations to make it happen.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Remember, it is a good idea to try this in a testing environment first. Also, it is important to keep a copy of your <code>wp-config.php<\/code> file before you get started.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step One: Add to the wp_config.php File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Look for this commented line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/* That's all, stop editing! Happy blogging. *\/<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Add this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>define( 'WP_ALLOW_MULTISITE', true );<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2016\/03\/add-to-config.png\" alt=\"Screenshot of Allow_Multisite line\" class=\"wp-image-16082\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">When you are done, make sure to save the file. If you are trying this on an existing install, it is suggested that you deactivate your plugins.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2016\/03\/deactivate-plugins.jpg\" alt=\"Screenshot of Deactivate Plugins reminder in WordPress\" class=\"wp-image-16084\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step Two: Activate Multisite<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">We will go into the WordPress admin and actually install Multisite now.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to Tools &nbsp;&gt; Network Setup. Choose subdomains or subdirectories for your installation.<\/li>\n\n\n\n<li>Choose a title for your network and email address of the network administrator<\/li>\n\n\n\n<li>Click the Install button.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step Three: Setting up the Network<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Confirm that you see a screen with a bunch of code on it. It will say something like \u201cCreate a Network of WordPress Sites\u201d at the top. This is the Network Install screen. Code snippets will need to be added to the files to complete the network setup.<\/li>\n\n\n\n<li>Open up the <code>wp-config.php<\/code> file and add the provided code to it and then save.<\/li>\n\n\n\n<li>Next, open up the <code>.htaccess<\/code> file and add the provided code and then save. <strong>Note: <\/strong>For WP Engine customers, you\u2019ll need to use an alternative method because our platform <a href=\"https:\/\/wpengine.com\/support\/htaccess-deprecation\/\" target=\"_blank\" rel=\"noreferrer noopener\">has deprecated the use of the .htaccess file<\/a> in order to increase website performance and match industry trends. You&#8217;ll want to follow our platform&#8217;s best practices for <a href=\"https:\/\/wpengine.com\/support\/what-is-wordpress-multisite\/\" target=\"_blank\" rel=\"noreferrer noopener\">converting your site to a multisite on WP Engine<\/a> and, if necessary, <a href=\"https:\/\/wpengine.com\/support\/change-plan-user-portal\/\" target=\"_blank\" rel=\"noreferrer noopener\">upgrading your plan<\/a>.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2016\/03\/enable-network.jpg\" alt=\"Screenshot for Enable Network \" class=\"wp-image-16085\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">You\u2019ll see the new dashboard.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"704\" height=\"350\" src=\"https:\/\/wpengine.com\/wp-content\/uploads\/2023\/07\/dashboard.jpg\" alt=\"\" class=\"wp-image-144715\" srcset=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2023\/07\/dashboard.jpg 704w, https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2023\/07\/dashboard-540x268.jpg 540w\" sizes=\"auto, (max-width: 704px) 100vw, 704px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Creating your First Site<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The whole point of Multisite is to add sites. Let\u2019s take a look at how to do that.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to My Sites &gt; Network Admin in the admin menu<\/li>\n\n\n\n<li>Next choose Sites &gt; Add New<\/li>\n\n\n\n<li>Enter the site address, site title and the email address of the site administrator<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Now the new site is created!<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2016\/03\/add-site.png\" alt=\"Add Site option in the WordPress Admin\" class=\"wp-image-16081\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">With just a few minor modifications you can take a single site and make it a Multisite. When implemented, it can help you work more efficiently with your network of sites. It\u2019s important to know when to use Multisite, however, and to make sure it\u2019s the right choice for your sites. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Want to learn more? <a href=\"https:\/\/wpengine.com\/case-studies\/speed-to-market-bg-foods\/\" target=\"_blank\" rel=\"noreferrer noopener\">See how B&amp;G Foods used WordPress Multisite<\/a> to migrate more than 40 websites from legacy systems to create a single, unified WordPress install. <\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Everything you need to know about WordPress multisite. <\/p>\n","protected":false},"author":1,"featured_media":140762,"template":"","resource-topic":[912],"resource-role":[896],"resource-type":[916],"class_list":["post-139679","resource","type-resource","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The Basics of WordPress Multisite<\/title>\n<meta name=\"description\" content=\"Building a multisite isn&#039;t as intimidating as it may sound. Read on for an overview of everything you need to know about WordPress multisite.\" \/>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Basics of WordPress Multisite\" \/>\n<meta property=\"og:description\" content=\"Building a multisite isn&#039;t as intimidating as it may sound. Read on for an overview of everything you need to know about WordPress multisite.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/\" \/>\n<meta property=\"og:site_name\" content=\"WP Engine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/wpengine\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-17T14:19:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2016\/03\/multisite.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@wpengine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/\",\"name\":\"The Basics of WordPress Multisite\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2016-03-16T18:00:35+00:00\",\"dateModified\":\"2024-06-17T14:19:08+00:00\",\"description\":\"Building a multisite isn't as intimidating as it may sound. Read on for an overview of everything you need to know about WordPress multisite.\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wpengine.com\/case-studies\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\/\/wpengine.com\/case-studies\/resources\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The Basics of WordPress Multisite\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\",\"url\":\"https:\/\/wpengine.com\/case-studies\/\",\"name\":\"WP Engine\",\"description\":\"Managed Hosting for WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085\",\"name\":\"WP Engine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"caption\":\"WP Engine\"},\"sameAs\":[\"https:\/\/wpengine.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The Basics of WordPress Multisite","description":"Building a multisite isn't as intimidating as it may sound. Read on for an overview of everything you need to know about WordPress multisite.","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"The Basics of WordPress Multisite","og_description":"Building a multisite isn't as intimidating as it may sound. Read on for an overview of everything you need to know about WordPress multisite.","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2024-06-17T14:19:08+00:00","og_image":[{"width":1100,"height":500,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2016\/03\/multisite.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@wpengine","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/","name":"The Basics of WordPress Multisite","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2016-03-16T18:00:35+00:00","dateModified":"2024-06-17T14:19:08+00:00","description":"Building a multisite isn't as intimidating as it may sound. Read on for an overview of everything you need to know about WordPress multisite.","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/the-basics-of-wordpress-multisite\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpengine.com\/case-studies\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/wpengine.com\/case-studies\/resources\/"},{"@type":"ListItem","position":3,"name":"The Basics of WordPress Multisite"}]},{"@type":"WebSite","@id":"https:\/\/wpengine.com\/case-studies\/#website","url":"https:\/\/wpengine.com\/case-studies\/","name":"WP Engine","description":"Managed Hosting for WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085","name":"WP Engine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","caption":"WP Engine"},"sameAs":["https:\/\/wpengine.com"]}]}},"acf":[],"grid_image_url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2016\/03\/multisite-grid.png","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Developer","topic":"<strong>Topics:<\/strong> Performance","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/139679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource"}],"about":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/types\/resource"}],"author":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/users\/1"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media\/140762"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=139679"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=139679"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=139679"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=139679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}