'theme_mod', * 'capability' => 'edit_theme_options' * 'default' => 0, * 'transport' => 'refresh', * 'sanitize_callback' => 'some_function' */ /*=============================================== = Footer content section = ===============================================*/ $rws_business_options = 'rws_business_options'; /*---------- Section Content ----------*/ $wp_customize->add_setting( $rws_business_options.'[footer_content_options]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => 'left', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_options]', array( 'label' => __('Select Footer Content Options', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_options]', 'type' => 'select', 'choices' => array( 'left' => 'Left Side Contents', 'right' => 'Right Side Contents', ), 'priority' => 1, ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_title]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_title'], 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_title]', array( 'label' => __('Left Side Title', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_title]', 'type' => 'text', 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_address]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_address'], 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_address]', array( 'label' => __('Left Side Location Address', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_address]', 'type' => 'text', 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_email]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_email'], 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_email]', array( 'label' => __('Left Side Email Address', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_email]', 'type' => 'text', 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_tel]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_tel'], 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_tel]', array( 'label' => __('Left Side Tel No.', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_tel]', 'type' => 'text', 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_social_title]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_social_title'], 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_social_title]', array( 'label' => __('Left Side Social Menu Title', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_social_title]', 'type' => 'text', 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_social_menu]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_social_menu'], 'transport' => 'refresh', 'sanitize_callback' => 'rws_business_sanitize_checkbox' ) ); $wp_customize->add_control( new Customize_Switcher_Control( $wp_customize, $rws_business_options.'[footer_content_social_menu]', array( 'label' => __( 'Display Social Icons', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_social_menu]', 'description' => __( 'For Social Menu Use Activate Social Menu From Menu Section', 'business-hub' ), 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ) ); $wp_customize->add_setting( $rws_business_options.'[footer_content_form]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'default' => $rws_business_options_defaults['footer_content_form'], 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( $rws_business_options.'[footer_content_form]', array( 'label' => __('Right Side Contact Form 7 Shortcode', 'business-hub' ), 'section' => 'footer_content_section', 'setting' => $rws_business_options.'[footer_content_form]', 'type' => 'text', 'priority' => 2, 'active_callback' => 'rws_business_footer_content' ) ); /*===== End of Footer content Section ======*/