Uses
Uses | Description |
---|---|
wp-includes/cache.php: wp_cache_delete() | Removes the cache contents matching key and group. |
wp-includes/option.php: update_option() | Updates the value of an option that was already added. |
wp-includes/option.php: delete_option() | Removes option by name. Prevents removal of protected WordPress options. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/revision.php: _wp_get_post_revision_version() | Gets the post revision version. |
wp-includes/revision.php: wp_save_post_revision() | Creates a revision for the current version of a post. |
wp-includes/wp-db.php: wpdb::query() | Performs a MySQL database query, using current database connection. |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |