WP_Site_Icon::insert_attachment( array $object, string $file )
Inserts an attachment.
Parameters
- $object
-
(Required) Attachment object.
- $file
-
(Required) File path of the attached image.
Return
(int) Attachment ID
Source
File: wp-admin/includes/class-wp-site-icon.php
public function insert_attachment( $object, $file ) {
$attachment_id = wp_insert_attachment( $object, $file );
$metadata = wp_generate_attachment_metadata( $attachment_id, $file );
/**
* Filters the site icon attachment metadata.
*
* @since WP-4.3.0
*
* @see wp_generate_attachment_metadata()
*
* @param array $metadata Attachment metadata.
*/
$metadata = apply_filters( 'site_icon_attachment_metadata', $metadata );
wp_update_attachment_metadata( $attachment_id, $metadata );
return $attachment_id;
}
Changelog
Version | Description |
---|---|
WP-4.3.0 | Introduced. |