From 793f8143038fd33df6e7cfc15fc5a514d595b2ed Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 15 Sep 2014 14:24:17 +0000 Subject: [PATCH] Make sure the $parent argument of wp_insert_attachment() still works as expected after [28579]. prop jesin, dikiy_forester. fixes #29646 for trunk. Built from https://develop.svn.wordpress.org/trunk@29745 git-svn-id: http://core.svn.wordpress.org/trunk@29519 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index d9d48a56fe..94ec8f2c50 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -4719,10 +4719,15 @@ function is_local_attachment($url) { function wp_insert_attachment( $args, $file = false, $parent = 0 ) { $defaults = array( 'file' => $file, - 'post_parent' => $parent + 'post_parent' => 0 ); + $data = wp_parse_args( $args, $defaults ); + if ( ! empty( $parent ) ) { + $data['post_parent'] = $parent; + } + $data['post_type'] = 'attachment'; return wp_insert_post( $data );