Uses
Uses | Description |
---|---|
wp-includes/load.php: get_current_network_id() | Retrieves the current network ID. |
wp-includes/option.php: add_network_option() | Adds a new network option. |
wp-includes/option.php: get_network_option() | Retrieves a network’s option value based on the option name. |
wp-includes/cache.php: wp_cache_get() | Retrieves the cache contents from the cache by key and group. |
wp-includes/cache.php: wp_cache_set() | Saves the data to the cache. |
wp-includes/formatting.php: sanitize_option() | Sanitises various option values based on the nature of the option. |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/functions.php: maybe_serialize() | Serialize data, if needed. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/option.php: pre_update_site_option_{$option} | Filters a specific network option before its value is updated. |
wp-includes/option.php: update_site_option_{$option} | Fires after the value of a specific network option has been successfully updated. |
wp-includes/option.php: update_site_option | Fires after the value of a network option has been successfully updated. |
wp-includes/option.php: update_option() | Updates the value of an option that was already added. |
wp-includes/option.php: wp_protect_special_option() | Protects WordPress special option from being modified. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |