有没有办法将新控件添加到"菜单"自定义页面上的标签?
我想要一个按钮"菜单位置"。 我已经尝试使用这样的add_control函数:
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
'test',
array(
'label' => __( 'Test', 'yespizza' ),
'section' => 'nav_menus',
'settings' => 'test_setting',
'priority' => 10,
)
));
我不知道如何获得菜单的正确部分名称。 问候