add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-footer-content-section', array( 'title' => esc_html__('Content', 'alagu'), 'panel' => 'site-footer-main-panel', ) ) ); /** * Option :Footer Content Typo */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[footer-content-typo]', array( 'default' => alagu_get_option( 'footer-content-typo' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_tweek' ), ) ); $wp_customize->add_control( new ALAGU_Customize_Control_Typography( $wp_customize, ALAGU_THEME_SETTINGS . '[footer-content-typo]', array( 'type' => 'dt-typography', 'section' => 'site-footer-content-section', 'label' => esc_html__( 'Typography', 'alagu'), ) ) ); /** * Option : Footer Content Color */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[footer-content-color]', array( 'default' => alagu_get_option( 'footer-content-color' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_hex_color' ), ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, ALAGU_THEME_SETTINGS . '[footer-content-color]', array( 'label' => esc_html__( 'Color', 'alagu' ), 'section' => 'site-footer-content-section', ) ) ); /** * Option : Footer Content Anchor Color */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[footer-content-a-color]', array( 'default' => alagu_get_option( 'footer-content-a-color' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_hex_color' ), ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, ALAGU_THEME_SETTINGS . '[footer-content-a-color]', array( 'label' => esc_html__( 'Anchor Color', 'alagu' ), 'section' => 'site-footer-content-section', ) ) ); /** * Option : Footer Content Anchor hover Color */ $wp_customize->add_setting( ALAGU_THEME_SETTINGS . '[footer-content-a-hover-color]', array( 'default' => alagu_get_option( 'footer-content-a-hover-color' ), 'type' => 'option', 'sanitize_callback' => array( 'ALAGU_Customizer_Sanitizes', 'sanitize_hex_color' ), ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, ALAGU_THEME_SETTINGS . '[footer-content-a-hover-color]', array( 'label' => esc_html__( 'Anchor Color', 'alagu' ), 'section' => 'site-footer-content-section', ) ) );