add_section( 'font_section' , array( 'title' => __('Fonts', 'business-store' ), ) ); $wp_customize->add_setting( 'font_label1', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new business_store_Label_Custom_control( $wp_customize, 'font_label1', array( 'label' => __('500+ google fonts. Go Pro version.','business-store' ), 'section' => 'font_section', ) ) ); $wp_customize->add_setting( 'header_fontfamily', array( 'default' => 'PT Sans', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_setting( 'body_fontfamily', array( 'default' => 'Lora', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'header_fontfamily' , array( 'label' => __('Headings Font Family','business-store'), 'section' => 'font_section', 'type'=>'select', 'choices'=> business_store_font_family(), ) ); $wp_customize->add_control( 'body_fontfamily' , array( 'label' => __('Body Font Family','business-store'), 'section' => 'font_section', 'type'=>'select', 'choices'=> business_store_font_family(), ) );