Помогите, пожалуйста! Нужно добавить секцию в кастомайзер. Секция не появляется. Что делаю не так?
function test_customize_register($wp_customize){
$wp_customize->add_section('
web_for_u_site_data', array(
'title'=>'Информация сайта',
'priority'=>0,));
$wp_customize->add_setting('web_for_u_phone',
array(
'default'=>'',
));
$wp_customize -> add_control(
'web_for_u_phone',
array(
'label'=>'Телефон',
'section'=>'web_for_u_site_data',
'type'=>'text',)
);}
add_action('customize_register','test_customize_register');