PluginProbe
WPSSO Core – Complete Schema Markup and Meta Tags / trunk
WPSSO Core – Complete Schema Markup and Meta Tags vtrunk
22.6.1 22.6.0 22.5.3 22.5.2 22.5.1 22.4.0 22.3.0 22.2.1 22.2.0 22.1.3 22.1.2 22.1.1 22.1.0 22.0.0 21.13.3 21.13.2 trunk 21.13.1
wpsso / html / network.html

network.html in WPSSO Core – Complete Schema Markup and Meta Tags trunk, at html/network.html

27 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 <p>WPSSO Core is multisite aware and provides settings pages in the network admin interface. You can install WPSSO Core as a "Must Use" plugin (in the mu-plugins/ folder), network activate the plugin, or activate it on individual network blogs (aka sites).</p>
3
4 <h3>License Management</h3>
5
6 <p>Premium edition licensing can be managed network-wide by providing an Authentication ID for all network blogs, or an Authentication ID (possibly different ones) can be entered individually in each blog's <em>Premium Licenses</em> settings page.</p>
7
8 <blockquote>
9
10 <p>Please note that the WPSSO Core plugin and the WPSSO Update Manager add-on must be active on the default WordPress blog to get Premium edition updates. This is a requirement of WordPress, not the WPSSO Core plugin. WordPress uses the default blog (ie. BLOG_ID_CURRENT_SITE) to manage updates in the network admin interface, which means the default blog must be licensed to install Premium updates.</p>
11
12 </blockquote>
13
14 <p>Blog ID 1 is usually the default network blog, but this can be changed using a few constants in the <code>wp-config.php</code> file. The default constants provided by WordPress during a multisite network install may look like this (this is only an example - your actual network settings may differ):</p>
15
16 <pre>
17 define( 'MULTISITE', true );
18 define( 'SUBDOMAIN_INSTALL', false );
19 define( 'DOMAIN_CURRENT_SITE', 'example.com' );
20 define( 'PATH_CURRENT_SITE', '/' );
21 define( 'SITE_ID_CURRENT_SITE', 1 );
22 define( 'BLOG_ID_CURRENT_SITE', 1 );
23 </pre>
24
25 <p>To change the network default blog ID, you must update the <code>BLOG_ID_CURRENT_SITE</code> and <code>PATH_CURRENT_SITE</code> constants for sub-folder multisites, or <code>BLOG_ID_CURRENT_SITE</code> and <code>DOMAIN_CURRENT_SITE</code> for sub-domain multisites (and <code>SUBDOMAIN_INSTALL</code> would be true in that case).</p>
26
27