From 8b9a3a08bf723f69e03635fa0eaed236e8293f23 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 12 Jan 2017 05:56:40 +0000 Subject: [PATCH] Docs: After [37083], change "HEX format" to "3- or 6-digit hexadecimal form" for clarity. Props swissspidy, theMikeD. Fixes #36336. Built from https://develop.svn.wordpress.org/trunk@39888 git-svn-id: http://core.svn.wordpress.org/trunk@39825 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 079c391669..da7fd65548 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -950,18 +950,18 @@ function remove_theme_mods() { } /** - * Retrieves the custom header text color in HEX format. + * Retrieves the custom header text color in 3- or 6-digit hexadecimal form. * * @since 2.1.0 * - * @return string Header text color in HEX format (minus the hash symbol). + * @return string Header text color in 3- or 6-digit hexadecimal form (minus the hash symbol). */ function get_header_textcolor() { return get_theme_mod('header_textcolor', get_theme_support( 'custom-header', 'default-text-color' ) ); } /** - * Displays the custom header text color in HEX format (minus the hash symbol). + * Displays the custom header text color in 3- or 6-digit hexadecimal form (minus the hash symbol). * * @since 2.1.0 */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 805e700bf3..f05d4a727e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39887'; +$wp_version = '4.8-alpha-39888'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.