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
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@
|
||||||
function _s_custom_header_setup() {
|
function _s_custom_header_setup() {
|
||||||
add_theme_support( 'custom-header', apply_filters( '_s_custom_header_args', array(
|
add_theme_support( 'custom-header', apply_filters( '_s_custom_header_args', array(
|
||||||
'default-image' => '',
|
'default-image' => '',
|
||||||
'default-text-color' => '000',
|
'default-text-color' => '000000',
|
||||||
'width' => 1000,
|
'width' => 1000,
|
||||||
'height' => 250,
|
'height' => 250,
|
||||||
'flex-height' => true,
|
'flex-height' => true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue