WP_Site_Icon::create_attachment_object( string $cropped, int $parent_attachment_id ): array

In this article

Creates an attachment ‘object’.

Parameters

$croppedstringrequired
Cropped image URL.
$parent_attachment_idintrequired
Attachment ID of parent image.

Return

array An array with attachment object data.

Source

public function create_attachment_object( $cropped, $parent_attachment_id ) {
	$parent     = get_post( $parent_attachment_id );
	$parent_url = wp_get_attachment_url( $parent->ID );
	$url        = str_replace( wp_basename( $parent_url ), wp_basename( $cropped ), $parent_url );

	$size       = wp_getimagesize( $cropped );
	$image_type = ( $size ) ? $size['mime'] : 'image/jpeg';

	$attachment = array(
		'ID'             => $parent_attachment_id,
		'post_title'     => wp_basename( $cropped ),
		'post_content'   => $url,
		'post_mime_type' => $image_type,
		'guid'           => $url,
		'context'        => 'site-icon',
	);

	return $attachment;
}

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.