@Luchiniel

Customizer WP не отображает новую секцию?

Помогите, пожалуйста! Нужно добавить секцию в кастомайзер. Секция не появляется. Что делаю не так?
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');
  • Вопрос задан
  • 126 просмотров
Решения вопроса 1
V_A_B
@V_A_B
¯\_(ツ)_/¯
А если так?:
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');

з.ы
вот косяк
$wp_customize->add_section('
	web_for_u_site_data',

с пробелами и ентерами тоже аккуратней надо быть
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы