add_setting( 'doc_Review', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
) );
$wp_customize->add_control( new WP_document_Customize_Control( $wp_customize, 'doc_Review', array(
'label' => __('Discover callcenter Pro','callcenter'),
'section' => 'callcenter_pro_section',
'setting' => 'doc_Review',)
) );
$wp_customize->add_setting( 'ti_store', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
) );
$wp_customize->add_control( new WP_tistore_Customize_Control( $wp_customize, 'ti_store', array(
'label' => __('Discover callcenter Pro','callcenter'),
'section' => 'callcenter_pro_section',
'setting' => 'ti_store',)
) );
}
add_action( 'customize_register', 'callcenter_pro_customizer' );
?>