mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
Fix incomplete inline documentation for the wp_header_image_attachment_metadata
filter.
See #26869. Built from https://develop.svn.wordpress.org/trunk@28375 git-svn-id: http://core.svn.wordpress.org/trunk@28203 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6bbc5b570c
commit
b4ca72583a
@ -1115,7 +1115,7 @@ wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); ?>
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Insert an attachment & its metadata.
|
* Insert an attachment and its metadata.
|
||||||
*
|
*
|
||||||
* @param array $object Attachment object.
|
* @param array $object Attachment object.
|
||||||
* @param string $cropped Cropped image URL.
|
* @param string $cropped Cropped image URL.
|
||||||
@ -1126,8 +1126,13 @@ wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); ?>
|
|||||||
$attachment_id = wp_insert_attachment( $object, $cropped );
|
$attachment_id = wp_insert_attachment( $object, $cropped );
|
||||||
$metadata = wp_generate_attachment_metadata( $attachment_id, $cropped );
|
$metadata = wp_generate_attachment_metadata( $attachment_id, $cropped );
|
||||||
/**
|
/**
|
||||||
* Allows us to insert custom meta data for an attachment.
|
* Filter the header image attachment metadata.
|
||||||
*
|
*
|
||||||
|
* @since 3.9.0
|
||||||
|
*
|
||||||
|
* @see wp_generate_attachment_metadata()
|
||||||
|
*
|
||||||
|
* @param array $metadata Attachment metadata.
|
||||||
*/
|
*/
|
||||||
$metadata = apply_filters( 'wp_header_image_attachment_metadata', $metadata );
|
$metadata = apply_filters( 'wp_header_image_attachment_metadata', $metadata );
|
||||||
wp_update_attachment_metadata( $attachment_id, $metadata );
|
wp_update_attachment_metadata( $attachment_id, $metadata );
|
||||||
|
Loading…
Reference in New Issue
Block a user