wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_load_core_site_options › WordPress Function

Since3.0.0
Deprecatedn/a
wp_load_core_site_options ( $network_id = null )
Parameters:
  • (int) $network_id Optional. Network ID of network for which to prime network options cache. Defaults to current network.
    Required: No
    Default: null
Defined at:
Codex:
Change Log:
  • 6.3.0
  • 6.6.0

Loads and primes caches of certain often requested network options if is_multisite().



Source

function wp_load_core_site_options( $network_id = null ) {
	if ( ! is_multisite() || wp_installing() ) {
		return;
	}
	$core_options = array( 'site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts', 'global_terms_enabled', 'ms_files_rewriting', 'WPLANG' );

	wp_prime_network_option_caches( $network_id, $core_options );
}