wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_update_attachment_metadata › WordPress Function

Od2.1.0
Przestarzałyn/a
wp_update_attachment_metadata ( $attachment_id, $data )
Parametry: (2)
  • (int) $attachment_id Attachment post ID.
    Wymagane: Tak
  • (array) $data Attachment meta data.
    Wymagane: Tak
Powrót:
  • (int|false) False if $post is invalid.
Zdefiniowane na:
Codex:

Updates metadata for an attachment.



Źródło

function wp_update_attachment_metadata( $attachment_id, $data ) {
	$attachment_id = (int) $attachment_id;

	$post = get_post( $attachment_id );

	if ( ! $post ) {
		return false;
	}

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