Uses
Uses | Description |
---|---|
wp-includes/post.php: pre_delete_attachment | Filters whether an attachment deletion should take place. |
wp-includes/post.php: wp_delete_attachment_files() | Deletes all files that belong to the given attachment. |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/taxonomy.php: wp_delete_object_term_relationships() | Will unlink the object from the taxonomy or taxonomies. |
wp-includes/taxonomy.php: get_object_taxonomies() | Return the names or objects of the taxonomies which are registered for the requested object or object type, such as a post object or post type name. |
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: delete_transient() | Deletes a transient. |
wp-includes/post.php: clean_post_cache() | Will clean the post in the cache. |
wp-includes/post.php: wp_get_attachment_metadata() | Retrieves attachment metadata for attachment ID. |
wp-includes/post.php: delete_attachment | Fires before an attachment is deleted, at the start of wp_delete_attachment(). |
wp-includes/post.php: wp_trash_post() | Move a post or page to the Trash |
wp-includes/post.php: delete_post | Fires immediately before a post is deleted from the database. |
wp-includes/post.php: deleted_post | Fires immediately after a post is deleted from the database. |
wp-includes/post.php: delete_post_meta() | Deletes a post meta field for 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_attached_file() | Retrieve attached file path based on attachment ID. |
wp-includes/wp-db.php: wpdb::get_row() | Retrieves one row from the database. |
wp-includes/wp-db.php: wpdb::get_col() | Retrieves one column 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. |
wp-includes/comment.php: wp_defer_comment_counting() | Whether to defer comment counting. |
wp-includes/comment.php: wp_delete_comment() | Trashes or deletes a comment. |
wp-includes/meta.php: delete_metadata() | Deletes metadata for the specified object. |
wp-includes/meta.php: delete_metadata_by_mid() | Deletes metadata by meta ID. |