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

This commit is contained in:
Greg Johnson 2013-10-08 14:59:35 -05:00
parent 4c6d950f14
commit 50a539cd81
1 changed files with 1 additions and 1 deletions

View File

@ -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,