wp_get_attachment_metadata( int $attachment_id, bool $unfiltered = false )

Retrieve attachment meta field for attachment ID.


Parameters

$attachment_id

(int) (Required) Attachment post ID. Defaults to global $post.

$unfiltered

(bool) (Optional) If true, filters are not run.

Default value: false


Return

(mixed) Attachment meta field. False on failure.


Source

File: wp-includes/post.php

function wp_get_attachment_metadata( $attachment_id = 0, $unfiltered = false ) {
	$attachment_id = (int) $attachment_id;
	if ( ! $post = get_post( $attachment_id ) ) {
		return false;
	}

	$data = get_post_meta( $post->ID, '_wp_attachment_metadata', true );

	if ( $unfiltered )
		return $data;

	/**
	 * Filters the attachment meta data.
	 *
	 * @since WP-2.1.0
	 *
	 * @param array|bool $data          Array of meta data for the given attachment, or false
	 *                                  if the object does not exist.
	 * @param int        $attachment_id Attachment post ID.
	 */
	return apply_filters( 'wp_get_attachment_metadata', $data, $post->ID );
}


Changelog

Changelog
Version Description
WP-2.1.0 Introduced.