diff --git src/wp-includes/post.php src/wp-includes/post.php
index a93fc25..905a99a 100644
|
|
function is_local_attachment($url) { |
4694 | 4694 | * setting the value for the 'comment_status' key. |
4695 | 4695 | * |
4696 | 4696 | * @since 2.0.0 |
4697 | | * @since 4.7.0 Add fourth paramater `$wp_error` to allow return of WP_Error on failure. |
4698 | 4697 | * |
4699 | 4698 | * @see wp_insert_post() |
4700 | 4699 | * |
4701 | 4700 | * @param string|array $args Arguments for inserting an attachment. |
4702 | 4701 | * @param string $file Optional. Filename. |
4703 | 4702 | * @param int $parent Optional. Parent post ID. |
4704 | | * @param bool $wp_error Optional. Whether to allow return of WP_Error on failure. Default false. |
4705 | | * @return int|WP_Error The attachment ID on success. The value 0 or WP_Error on failure. |
| 4703 | * @return int Attachment ID. |
4706 | 4704 | */ |
4707 | | function wp_insert_attachment( $args, $file = false, $parent = 0, $wp_error = false ) { |
| 4705 | function wp_insert_attachment( $args, $file = false, $parent = 0 ) { |
4708 | 4706 | $defaults = array( |
4709 | 4707 | 'file' => $file, |
4710 | 4708 | 'post_parent' => 0 |
… |
… |
function wp_insert_attachment( $args, $file = false, $parent = 0, $wp_error = fa |
4718 | 4716 | |
4719 | 4717 | $data['post_type'] = 'attachment'; |
4720 | 4718 | |
4721 | | return wp_insert_post( $data, $wp_error ); |
| 4719 | return wp_insert_post( $data ); |
4722 | 4720 | } |
4723 | 4721 | |
4724 | 4722 | /** |