forked from mirror/_s
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:
parent
4c6d950f14
commit
50a539cd81
|
@ -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,
|
||||
|
|
Reference in New Issue