Uses
Uses | Description |
---|---|
wp-includes/load.php: get_current_network_id() | Retrieves the current network ID. |
wp-includes/cache.php: wp_cache_delete() | Removes the cache contents matching key and group. |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/option.php: pre_delete_site_option_{$option} | Fires immediately before a specific network option is deleted. |
wp-includes/option.php: delete_site_option_{$option} | Fires after a specific network option has been deleted. |
wp-includes/option.php: delete_site_option | Fires after a network option has been deleted. |
wp-includes/option.php: delete_option() | Removes option by name. Prevents removal of protected WordPress options. |
wp-includes/wp-db.php: wpdb::get_row() | Retrieves one row from the database. |
wp-includes/wp-db.php: wpdb::delete() | Deletes a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |