From 50a539cd817a4dbb0dd5deb26c5b0df0fec77964 Mon Sep 17 00:00:00 2001 From: Greg Johnson Date: Tue, 8 Oct 2013 14:59:35 -0500 Subject: [PATCH] Wordpress custom-header functionality seems to require default-text-color to be a six-digit hex code. using less than six digits here causes Appearance > Header to hang on step 3 --- inc/custom-header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/custom-header.php b/inc/custom-header.php index b8fbf320..57cff747 100644 --- a/inc/custom-header.php +++ b/inc/custom-header.php @@ -27,7 +27,7 @@ function _s_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( '_s_custom_header_args', array( 'default-image' => '', - 'default-text-color' => '000', + 'default-text-color' => '000000', 'width' => 1000, 'height' => 250, 'flex-height' => true,