add_control(
new bgbn_Customize_Misc_Control(
$wp_customize,
$control_prefix . $setting_id,
array(
'section' => $section,
'type' => 'text',
'description' => sprintf(
__( '%s to quickly apply designer-picked style choices (fonts, layout, colors) to your website.', 'bgbn' ),
sprintf(
'%2$s',
esc_url( bgbn_get_plus_link( 'style-kits' ) ),
__( 'Upgrade to bgbn Plus', 'bgbn' )
)
),
'priority' => $priority->add()
)
)
);
// Style Kits heading
$setting_id = $setting_prefix . '-heading';
$wp_customize->add_control(
new bgbn_Customize_Misc_Control(
$wp_customize,
$control_prefix . $setting_id,
array(
'section' => $section,
'type' => 'heading',
'label' => __( 'Kits', 'bgbn' ),
'priority' => $priority->add()
)
)
);
// Style Kits dropdown
$setting_id = $setting_prefix . '-dropdown';
$wp_customize->add_control(
new bgbn_Customize_Misc_Control(
$wp_customize,
$control_prefix . $setting_id,
array(
'section' => $section,
'type' => 'text',
'description' => '
',
'priority' => $priority->add()
)
)
);
}
endif;