Uses
| Uses | Description | 
|---|---|
| wp-admin/includes/post.php: _wp_get_allowed_postdata() | Returns only allowed post data fields | 
| wp-includes/wp-db.php: wpdb::strip_invalid_text_for_column() | Strips any invalid characters from the string for a given table and column. | 
| wp-admin/includes/media.php: attachment_fields_to_save | Filters the attachment fields to be saved. | 
| wp-admin/includes/post.php: wp_set_post_lock() | Mark the post as currently being edited by the current user | 
| wp-admin/includes/post.php: get_post_meta_by_id() | Get post meta data by meta ID. | 
| wp-admin/includes/post.php: update_meta() | Update post meta data by meta ID. | 
| wp-admin/includes/post.php: delete_meta() | Delete post meta data by meta ID. | 
| wp-admin/includes/post.php: add_meta() | Add post meta data defined in $_POST superglobal for post with given ID. | 
| wp-admin/includes/post.php: _fix_attachment_links() | Replace hrefs of attachment anchors with up-to-date permalinks. | 
| wp-admin/includes/post.php: _wp_translate_postdata() | Rename $_POST data from form names to DB post columns. | 
| wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. | 
| wp-includes/l10n.php: __() | Retrieve the translation of $text. | 
| wp-includes/formatting.php: wp_slash() | Add slashes to a string or array of strings, in a recursive manner. | 
| wp-includes/formatting.php: wp_unslash() | Remove slashes from a string or array of strings. | 
| wp-includes/formatting.php: sanitize_text_field() | Sanitizes a string from user input or from the database. | 
| wp-includes/formatting.php: wp_strip_all_tags() | Properly strip all HTML tags including script and style | 
| wp-includes/formatting.php: esc_url_raw() | Performs esc_url() for database usage. | 
| wp-includes/formatting.php: sanitize_key() | Sanitizes a string key. | 
| wp-includes/kses.php: wp_filter_post_kses() | Sanitizes content for allowed HTML tags for post content. | 
| wp-includes/functions.php: wp_die() | Kills WordPress execution and displays HTML page with an error message. | 
| wp-includes/taxonomy.php: get_taxonomy() | Retrieves the taxonomy object of $taxonomy. | 
| wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. | 
| wp-includes/user.php: get_current_user_id() | Get the current user’s ID | 
| wp-includes/media.php: wp_get_attachment_id3_keys() | Returns useful keys to use to lookup data from an attachment’s stored metadata. | 
| wp-includes/post.php: wp_get_attachment_metadata() | Retrieves attachment metadata for attachment ID. | 
| wp-includes/post.php: wp_update_attachment_metadata() | Updates metadata for an attachment. | 
| wp-includes/post.php: wp_update_post() | Update a post with new post data. | 
| wp-includes/post.php: stick_post() | Make a post sticky. | 
| wp-includes/post.php: unstick_post() | Un-stick a post. | 
| wp-includes/post.php: post_type_supports() | Check a post type’s support for a given feature. | 
| wp-includes/post.php: update_post_meta() | Updates a post meta field based on the given post ID. | 
| wp-includes/post.php: get_post_meta() | Retrieves a post meta field for the given post ID. | 
| wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. | 
| wp-includes/post.php: get_post_type_object() | Retrieves a post type object by name. | 
| wp-includes/revision.php: wp_get_post_revisions() | Returns all revisions of specified post. | 
| wp-includes/revision.php: _wp_get_post_revision_version() | Gets the post revision version. | 
| wp-includes/revision.php: _wp_upgrade_revisions_of_post() | Upgrade the revisions author, add the current post as a revision and set the revisions version to 1 | 
| wp-includes/post-formats.php: set_post_format() | Assign a format to a post | 
| wp-includes/meta.php: is_protected_meta() | Determines whether a meta key is considered protected. | 
| wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |