add_section( 'footer_settings', array( 'title' => __('Footer Settings','affiliate-marketingly'), 'priority' => 1, 'capability' => 'edit_theme_options', ) ); $wp_customize->add_setting( 'footer_headline_color', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_headline_color', array( 'label' => __( 'Headline Color', 'affiliate-marketingly' ), 'section' => 'footer_settings', 'priority' => 1, 'settings' => 'footer_headline_color', ) ) ); $wp_customize->add_setting( 'footer_text_color', array( 'default' => '#656565', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_text_color', array( 'label' => __( 'Text Color', 'affiliate-marketingly' ), 'section' => 'footer_settings', 'priority' => 1, 'settings' => 'footer_text_color', ) ) ); $wp_customize->add_setting( 'footer_link_color', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_link_color', array( 'label' => __( 'Link Color', 'affiliate-marketingly' ), 'section' => 'footer_settings', 'priority' => 1, 'settings' => 'footer_link_color', ) ) ); $wp_customize->add_setting( 'footer_border_color', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_border_color', array( 'label' => __( 'Border Color', 'affiliate-marketingly' ), 'section' => 'footer_settings', 'priority' => 1, 'settings' => 'footer_border_color', ) ) ); $wp_customize->add_setting( 'footer_background_color', array( 'default' => '#000', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_background_color', array( 'label' => __( 'Background Color', 'affiliate-marketingly' ), 'section' => 'footer_settings', 'priority' => 1, 'settings' => 'footer_background_color', ) ) ); } add_action( 'customize_register', 'affiliate_marketingly_customize_register' ); if(! function_exists('affiliate_marketingly_customizer_css_final_output' ) ): function affiliate_marketingly_customizer_css_final_output(){ ?>