wp_update_attachment_metadata( int $attachment_id, array $data )

Update metadata for an attachment.


Parameters

$attachment_id

(int) (Required) Attachment post ID.

$data

(array) (Required) Attachment meta data.


Return

(int|bool) False if $post is invalid.


Source

File: wp-includes/post.php

function wp_update_attachment_metadata( $attachment_id, $data ) {
	$attachment_id = (int) $attachment_id;
	if ( ! $post = get_post( $attachment_id ) ) {
		return false;
	}

	/**
	 * Filters the updated attachment meta data.
	 *
	 * @since WP-2.1.0
	 *
	 * @param array $data          Array of updated attachment meta data.
	 * @param int   $attachment_id Attachment post ID.
	 */
	if ( $data = apply_filters( 'wp_update_attachment_metadata', $data, $post->ID ) )
		return update_post_meta( $post->ID, '_wp_attachment_metadata', $data );
	else
		return delete_post_meta( $post->ID, '_wp_attachment_metadata' );
}


Changelog

Changelog
Version Description
WP-2.1.0 Introduced.