From f83abcbf3e46bdfb53a3bb14bceb849d9a540967 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 16 Sep 2015 10:42:08 +0000 Subject: [PATCH] Docs: Add a changelog entry for the switch to using `wp_get_attachment_url()` instead of the guid for determining the header image URL in `Custom_Image_Header::step_3()`. The change was introduced in [34188]. See #33319. git-svn-id: https://develop.svn.wordpress.org/trunk@34228 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/custom-header.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wp-admin/custom-header.php b/src/wp-admin/custom-header.php index 2335c7b63a..7546bb8542 100644 --- a/src/wp-admin/custom-header.php +++ b/src/wp-admin/custom-header.php @@ -835,6 +835,8 @@ wp_nonce_field( 'custom-header-options', '_wpnonce-custom-header-options' ); ?> * Display third step of custom header image page. * * @since 2.1.0 + * @since 4.4.0 Switched to using wp_get_attachment_url() instead of the guid + * for retrieving the header image URL. */ public function step_3() { check_admin_referer( 'custom-header-crop-image' );