#80 closed defect (bug) (fixed)
post meta data is not deleted when the post is deleted
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 1.2 |
| Severity: | minor | Keywords: | |
| Cc: |
Description
Deleting a post ought to delete that post's meta data. It does not.
Change History (4)
comment:2
majelbstoat — 9 years ago
- Owner changed from anonymous to rboren
- Resolution changed from 10 to 20
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Should be a simple enough patch... I think
$meta = $wpdb->query("DELETE FROM $wpdb->postmeta WHERE post_id = $post_id");
should be inserted after the statements in 'post.php' that delete the post2cat, comments and post entry itself.