Uses
Uses | Description |
---|---|
wp-includes/option.php: add_site_option_{$option} | Fires after a specific network option has been successfully added. |
wp-includes/load.php: get_current_network_id() | Retrieves the current network ID. |
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_add_site_option_{$option} | Filters the value of a specific network option before it is added. |
wp-includes/option.php: add_site_option | Fires after a network option has been successfully added. |
wp-includes/option.php: add_option() | Adds a new option. |
wp-includes/option.php: wp_protect_special_option() | Protects WordPress special option from being modified. |
wp-includes/wp-db.php: wpdb::insert() | Inserts a row into the table. |