Uses
Uses | Description |
---|---|
wp-includes/post.php: pre_delete_post | Filters whether a post deletion should take place. |
wp-includes/cron.php: wp_clear_scheduled_hook() | Unschedules all events attached to the hook with the specified arguments. |
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/post.php: clean_post_cache() | Will clean the post in the cache. |
wp-includes/post.php: wp_delete_attachment() | Trash or delete an attachment. |
wp-includes/post.php: wp_trash_post() | Move a post or page to the Trash |
wp-includes/post.php: before_delete_post | Fires before a post is deleted, at the start of wp_delete_post(). |
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: after_delete_post | Fires after a post is deleted, at the conclusion of wp_delete_post(). |
wp-includes/post.php: delete_post_meta() | Deletes 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_status() | Retrieve the post status based on the post ID. |
wp-includes/post.php: is_post_type_hierarchical() | Whether the post type is hierarchical. |
wp-includes/revision.php: wp_delete_post_revision() | Deletes a revision. |
wp-includes/wp-db.php: wpdb::get_row() | Retrieves one row from the database. |
wp-includes/wp-db.php: wpdb::get_results() | Retrieves an entire SQL result set from the database (i.e., many rows). |
wp-includes/wp-db.php: wpdb::update() | Updates a row in the table. |
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_by_mid() | Deletes metadata by meta ID. |