Delete custom taxonomy relationships when deleting a post. Props miqrogroove. fixes #10821

git-svn-id: http://svn.automattic.com/wordpress/trunk@12299 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-11-30 22:17:28 +00:00
parent 97bf1f11bd
commit 41099db69b
1 changed files with 1 additions and 2 deletions

View File

@ -1186,8 +1186,7 @@ function wp_delete_post( $postid = 0, $force_delete = false ) {
delete_post_meta($postid,'_wp_trash_meta_status');
delete_post_meta($postid,'_wp_trash_meta_time');
/** @todo delete for pluggable post taxonomies too */
wp_delete_object_term_relationships($postid, array('category', 'post_tag'));
wp_delete_object_term_relationships($postid, get_object_taxonomies('post'));
$parent_data = array( 'post_parent' => $post->post_parent );
$parent_where = array( 'post_parent' => $postid );