Sinceramente no se que mas puedas revisar si ya lo tienes como te indique debe de funcionar... doy por echo que tienes activado el debug de wordpress si no es asi activalo.
prueba crear un backup de tu archivo donde tienes esas configuraciones y coloca este codigo, en mi servidor local y mi hosting funciona sin ningun problemas
Código PHP:
Ver original<?php
function mytheme_customize_register( $wp_customize ) {
$wp_customize->add_section( 'themename_opcion' , array( 'title' => __('Visible Section Name','mytheme'),
'priority' => 30,
) );
$wp_customize->add_setting('themename_copyright_setting', array( 'default' => "© Copyright " . Date('Y') . " rights reserved.", ));
$wp_customize->add_control('themename_copyright', array( 'label' => __('Editar el Copyright ©.'),
'description' => '<font color="#f00;"><b>Por favor no eliminar los creditos del autor</b></font>',
'section' => 'themename_opcion',
'settings' => 'themename_copyright_setting',
'type' => 'textarea',
));
}
add_action( 'customize_register', 'mytheme_customize_register' );