{"id":542833,"date":"2026-06-16T13:28:02","date_gmt":"2026-06-16T13:28:02","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=542833"},"modified":"2026-06-16T13:31:54","modified_gmt":"2026-06-16T13:31:54","slug":"how-wordpress-multisite-shares-resources","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/","title":{"rendered":"How WordPress Multisite Shares Resources"},"content":{"rendered":"\n<p>If you have ever managed more than one WordPress site, you know how repetitive it gets. Updating plugins, themes, and users on every site separately eats up a lot of time.<\/p>\n\n\n\n<p>WordPress Multisite lets you manage multiple websites from one installation. Each site has its own content and settings while sharing the same WordPress core.<\/p>\n\n\n\n<p>In this blog, we will break that down in simple terms, look at the actual database structure, and see some code that shows how WordPress switches between sites.<\/p>\n\n\n\n<p>If you are new to Multisite, check out our guide on <a href=\"https:\/\/webkul.com\/blog\/wordpress-multisite-setup\/\">setting up a WordPress Multisite network<\/a> before getting started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is WordPress Multisite?<\/h2>\n\n\n\n<p>Multisite is a built-in WordPress feature that turns one installation into a network of sites.<\/p>\n\n\n\n<p>All sites in the network run on the same WordPress core files. They also share the same database, but each site gets its own set of tables inside it.<\/p>\n\n\n\n<p>You enable it by adding one line to your wp-config.php file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/* Enable Multisite *\/\ndefine( &#039;WP_ALLOW_MULTISITE&#039;, true );<\/pre>\n\n\n\n<p>This single line unlocks the &#8220;Network Setup&#8221; option in your WordPress dashboard.<\/p>\n\n\n\n<p>After running the setup, WordPress asks you to add a few more constants:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">define( &#039;MULTISITE&#039;, true );\ndefine( &#039;SUBDOMAIN_INSTALL&#039;, false );      \/\/ true for site1.example.com style\ndefine( &#039;DOMAIN_CURRENT_SITE&#039;, &#039;example.com&#039; );\ndefine( &#039;PATH_CURRENT_SITE&#039;, &#039;\/&#039; );\ndefine( &#039;SITE_ID_CURRENT_SITE&#039;, 1 );\ndefine( &#039;BLOG_ID_CURRENT_SITE&#039;, 1 );<\/pre>\n\n\n\n<p>These constants tell WordPress that it is now running as a network, and how to structure the site URLs.<\/p>\n\n\n\n<p>For the complete step-by-step process, you can also refer to the official <a href=\"https:\/\/wordpress.org\/documentation\/article\/create-a-network\/\" target=\"_blank\" rel=\"noopener\">Create a Network documentation<\/a> on WordPress.org.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Big Picture: Shared vs Isolated<\/h2>\n\n\n\n<p>Think of Multisite like an apartment building.<\/p>\n\n\n\n<p>Everyone shares the building itself \u2014 walls, plumbing, electricity. But each apartment has its own rooms, furniture, and front-door key.<\/p>\n\n\n\n<p>In Multisite, the &#8220;building&#8221; is the WordPress core, plugins, themes, and user accounts. The &#8220;apartments&#8221; are the individual sites with their own content, settings, and media.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large wp-duotone-unset-1\"><img decoding=\"async\" width=\"1200\" height=\"747\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp\" alt=\"WordPress Multisite shared and isolated resources architecture diagram\" class=\"wp-image-542840\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-300x187.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-250x156.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-768x478.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1536x956.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated.webp 1800w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Shared resources are managed once, while each site keeps its own data<\/figcaption><\/figure>\n\n\n\n<p>Here is a quick summary before we go deeper.<\/p>\n\n\n\n<p><strong>Shared across the network:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress core files<\/li>\n\n\n\n<li>Plugin and theme files<\/li>\n\n\n\n<li>User accounts (wp_users table)<\/li>\n\n\n\n<li>Network-wide settings<\/li>\n<\/ul>\n\n\n\n<p><strong>Isolated per site:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Posts, pages, and comments<\/li>\n\n\n\n<li>Site settings and options<\/li>\n\n\n\n<li>Media uploads (separate folders)<\/li>\n\n\n\n<li>Active plugin\/theme choices per site<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">What Is Shared Across the Network<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Core Files<\/h3>\n\n\n\n<p>There is only one copy of WordPress on the server. Every site in the network runs on it.<\/p>\n\n\n\n<p>In other words, one update to WordPress core updates every site at once. That is a huge time saver.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Plugins and Themes<\/h3>\n\n\n\n<p>Plugin and theme files live in one place: the wp-content folder.<\/p>\n\n\n\n<p>Only the network admin (called the Super Admin) can install them. Site admins can only activate the ones the Super Admin has installed.<\/p>\n\n\n\n<p>You can also &#8220;Network Activate&#8221; a plugin to turn it on for every site at once. In code, a plugin can check if it is network activated like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">if ( is_plugin_active_for_network( &#039;my-plugin\/my-plugin.php&#039; ) ) {\n    \/\/ This plugin is active on every site in the network.\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3. Users<\/h3>\n\n\n\n<p>This is the part that surprises most people. In fact, all sites in the network share the same user accounts.<\/p>\n\n\n\n<p>A person registers once, and after that, you can give them a role on any site. The same login works everywhere.<\/p>\n\n\n\n<p>WordPress stores all users in two global tables: wp_users and wp_usermeta. Because of this, adding an existing user to another site takes just one function:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ Give user ID 5 the &#039;editor&#039; role on site ID 3.\nadd_user_to_blog( 3, 5, &#039;editor&#039; );<\/pre>\n\n\n\n<p>This adds the user to site 3 without creating a new account.<\/p>\n\n\n\n<p>If you need more control over user permissions, learn how to <a href=\"https:\/\/webkul.com\/blog\/how-to-create-a-custom-role-and-user-globally-for-wordpress-multisite\/\">create custom roles and users in WordPress Multisite<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Network Settings<\/h3>\n\n\n\n<p>Network-wide settings live in their own global tables, like wp_site and wp_sitemeta.<\/p>\n\n\n\n<p>For example, these control allowed file types, upload limits, and registration rules for the entire network.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Stays Isolated Per Site<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Database Tables<\/h3>\n\n\n\n<p>Here is where WordPress Multisite isolation really happens. Each site gets its own set of database tables, and a numeric prefix keeps them separate.<\/p>\n\n\n\n<p>The first site uses the normal tables. Every new site gets numbered copies:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">-- Site 1 (main site)\nwp_posts\nwp_options\nwp_comments\n\n-- Site 2\nwp_2_posts\nwp_2_options\nwp_2_comments\n\n-- Site 3\nwp_3_posts\nwp_3_options\nwp_3_comments<\/pre>\n\n\n\n<p>So a post on Site 2 lives in wp_2_posts and can never mix with posts from Site 3.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large wp-duotone-unset-2\"><img decoding=\"async\" width=\"1200\" height=\"693\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables-1200x693.webp\" alt=\"WordPress Multisite database tables shared and isolated per site\" class=\"wp-image-542841\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables-1200x693.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables-300x173.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables-250x144.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables-768x444.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables-1536x887.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-database-tables.webp 1800w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">One database, with global tables shared and numbered tables isolated per site<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">2. Content<\/h3>\n\n\n\n<p>Each site stores its posts, pages, comments, categories, and menus in its own tables.<\/p>\n\n\n\n<p>Editing content on one site has zero effect on the others. Each site is its own world.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Site Settings<\/h3>\n\n\n\n<p>Each site has its own wp_X_options table. As a result, things like site title, timezone, and homepage settings stay fully independent.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Media Uploads<\/h3>\n\n\n\n<p>Similarly, each site gets its own upload folder based on its site ID:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">wp-content\/uploads\/             \u2192 Main site\nwp-content\/uploads\/sites\/2\/     \u2192 Site 2\nwp-content\/uploads\/sites\/3\/     \u2192 Site 3<\/pre>\n\n\n\n<p>As a result, an image you upload to Site 2 never appears in Site 3&#8217;s media library.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Plugin and Theme Activation<\/h3>\n\n\n\n<p>All sites share the same files, but each site decides which ones to use.<\/p>\n\n\n\n<p>Site 2 can run a shop theme while Site 3 runs a blog theme \u2014 from the same installed files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How WordPress Switches Between Sites<\/h2>\n\n\n\n<p>WordPress decides which site to load by looking at the URL of the request.<\/p>\n\n\n\n<p>It matches the domain and path against the wp_blogs table, finds the site ID, and then uses that ID to pick the right table prefix.<\/p>\n\n\n\n<p>In your own code, you can do the same thing with the <a href=\"https:\/\/developer.wordpress.org\/reference\/functions\/switch_to_blog\/\" target=\"_blank\" rel=\"noopener\">switch_to_blog()<\/a> function:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ We are on the main site right now.\nswitch_to_blog( 2 );\n\n\/\/ Now every query runs against Site 2&#039;s tables.\n$recent = get_posts( array( &#039;numberposts&#039; =&gt; 3 ) );\n\n\/\/ Always switch back when done.\nrestore_current_blog();<\/pre>\n\n\n\n<p>For example, this is how you can show &#8220;latest posts from all our sites&#8221; on a main landing page.<\/p>\n\n\n\n<p>Here is a fuller example that loops through every site in the network:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$sites = get_sites();\n\nforeach ( $sites as $site ) {\n    switch_to_blog( $site-&gt;blog_id );\n\n    echo get_bloginfo( &#039;name&#039; ) . &#039; has &#039; .\n         wp_count_posts()-&gt;publish . &#039; published posts.&#039;;\n\n    restore_current_blog();\n}<\/pre>\n\n\n\n<p>This code visits each site, reads from its isolated tables, and returns safely to the original site.<\/p>\n\n\n\n<p>Most importantly, always call restore_current_blog() after switch_to_blog(). Otherwise, your code may keep reading the wrong site&#8217;s data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Design Works So Well<\/h2>\n\n\n\n<p>The shared parts remove repeated work. One core update, one plugin install, one user list \u2014 managed in a single place.<\/p>\n\n\n\n<p>Meanwhile, the isolated parts keep sites safe from each other. One site&#8217;s content, settings, and uploads can never leak into another.<\/p>\n\n\n\n<p>This balance is why WordPress Multisite powers things like university networks, news networks, and WordPress.com itself.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">When Should You Use Multisite?<\/h2>\n\n\n\n<p><strong>WordPress Multisite is a great fit when:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You run many sites that need the same plugins and themes.<\/li>\n\n\n\n<li>The same team or users work across all the sites.<\/li>\n\n\n\n<li>You want one update process for everything.<\/li>\n<\/ul>\n\n\n\n<p><strong>It is not a good fit when:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Each site needs different owners with full server control.<\/li>\n\n\n\n<li>One site needs very different plugins or heavy customization.<\/li>\n\n\n\n<li>You may need to move a single site to its own host later (it is possible, but takes work).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p>WordPress Multisite follows one simple principle: share the heavy things, isolate the personal things.<\/p>\n\n\n\n<p>All sites share core files, plugins, themes, and users, so you manage them once. At the same time, each site keeps its own content, settings, and uploads, so everything stays independent.<\/p>\n\n\n\n<p>Once you understand this split, Multisite stops feeling like magic and starts feeling like a very practical tool.<\/p>\n\n\n\n<p>You can also learn more about <a href=\"https:\/\/webkul.com\/blog\/creating-a-multisite-network-in-wordpress\/\">creating and managing a WordPress Multisite network<\/a> in our detailed setup guide.<\/p>\n\n\n\n<p>So if you manage more than a couple of WordPress sites, it is well worth a try.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you have ever managed more than one WordPress site, you know how repetitive it gets. Updating plugins, themes, and users on every site separately eats up a lot of time. WordPress Multisite lets you manage multiple websites from one installation. Each site has its own content and settings while sharing the same WordPress core. <a href=\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":502,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7966,1260],"tags":[1258,12086],"class_list":["post-542833","post","type-post","status-publish","format-standard","hentry","category-wordpress-woocommerce","category-wordpress","tag-wordpress","tag-wordpress-multisite"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How WordPress Multisite Shares Resources - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Running multiple websites with WordPress Multisite? Learn which resources are shared, which stay separate, and why it matters.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How WordPress Multisite Shares Resources - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Running multiple websites with WordPress Multisite? Learn which resources are shared, which stay separate, and why it matters.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-16T13:28:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-16T13:31:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp\" \/>\n<meta name=\"author\" content=\"Nitish Vashistha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nitish Vashistha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\"},\"author\":{\"name\":\"Nitish Vashistha\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/21ea8837939ca1f0a79992be08afe9d3\"},\"headline\":\"How WordPress Multisite Shares Resources\",\"datePublished\":\"2026-06-16T13:28:02+00:00\",\"dateModified\":\"2026-06-16T13:31:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\"},\"wordCount\":1166,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp\",\"keywords\":[\"wordpress\",\"Wordpress MultiSite\"],\"articleSection\":[\"WooCommerce\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\",\"name\":\"How WordPress Multisite Shares Resources - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp\",\"datePublished\":\"2026-06-16T13:28:02+00:00\",\"dateModified\":\"2026-06-16T13:31:54+00:00\",\"description\":\"Running multiple websites with WordPress Multisite? Learn which resources are shared, which stay separate, and why it matters.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated.webp\",\"width\":1800,\"height\":1120},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How WordPress Multisite Shares Resources\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/21ea8837939ca1f0a79992be08afe9d3\",\"name\":\"Nitish Vashistha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a74461f8bd2ea3656105ffbe4b82c99401b2ffbc5906a2a14aa74d1c343a5997?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a74461f8bd2ea3656105ffbe4b82c99401b2ffbc5906a2a14aa74d1c343a5997?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Nitish Vashistha\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/nitish-wp634\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How WordPress Multisite Shares Resources - Webkul Blog","description":"Running multiple websites with WordPress Multisite? Learn which resources are shared, which stay separate, and why it matters.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/","og_locale":"en_US","og_type":"article","og_title":"How WordPress Multisite Shares Resources - Webkul Blog","og_description":"Running multiple websites with WordPress Multisite? Learn which resources are shared, which stay separate, and why it matters.","og_url":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2026-06-16T13:28:02+00:00","article_modified_time":"2026-06-16T13:31:54+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp","type":"","width":"","height":""}],"author":"Nitish Vashistha","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Nitish Vashistha","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/"},"author":{"name":"Nitish Vashistha","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/21ea8837939ca1f0a79992be08afe9d3"},"headline":"How WordPress Multisite Shares Resources","datePublished":"2026-06-16T13:28:02+00:00","dateModified":"2026-06-16T13:31:54+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/"},"wordCount":1166,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp","keywords":["wordpress","Wordpress MultiSite"],"articleSection":["WooCommerce","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/","url":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/","name":"How WordPress Multisite Shares Resources - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated-1200x747.webp","datePublished":"2026-06-16T13:28:02+00:00","dateModified":"2026-06-16T13:31:54+00:00","description":"Running multiple websites with WordPress Multisite? Learn which resources are shared, which stay separate, and why it matters.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2026\/06\/multisite-shared-vs-isolated.webp","width":1800,"height":1120},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-wordpress-multisite-shares-resources\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How WordPress Multisite Shares Resources"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/21ea8837939ca1f0a79992be08afe9d3","name":"Nitish Vashistha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a74461f8bd2ea3656105ffbe4b82c99401b2ffbc5906a2a14aa74d1c343a5997?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a74461f8bd2ea3656105ffbe4b82c99401b2ffbc5906a2a14aa74d1c343a5997?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Nitish Vashistha"},"url":"https:\/\/webkul.com\/blog\/author\/nitish-wp634\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/542833","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/502"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=542833"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/542833\/revisions"}],"predecessor-version":[{"id":543842,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/542833\/revisions\/543842"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=542833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=542833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=542833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}