add_setting( 'logo_width', array( 'default' => best_shop_default_settings('logo_width'), 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'logo_width', array( 'label' => esc_html__( 'Logo Maximum Width', 'best-shop' ), 'type' => 'number', 'section' => 'title_tagline', 'settings' => 'logo_width', )); // primary $wp_customize->add_setting( 'primary_color', array( 'default' => best_shop_default_settings('primary_color'), 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'primary_color', array( 'label' => esc_html__( 'Primary Color', 'best-shop' ), 'section' => 'colors', 'settings' => 'primary_color' ))); // secondary $wp_customize->add_setting( 'secondary_color', array( 'default' => best_shop_default_settings('secondary_color'), 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'secondary_color', array( 'label' => esc_html__( 'Secondary Color', 'best-shop' ), 'section' => 'colors', 'settings' => 'secondary_color' ))); // Footer $wp_customize->add_setting( 'footer_color', array( 'default' => best_shop_default_settings('footer_color'), 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_color', array( 'label' => esc_html__( 'Footer Color', 'best-shop' ), 'section' => 'colors', 'settings' => 'footer_color' ))); // Footer text $wp_customize->add_setting( 'footer_text_color', array( 'default' => best_shop_default_settings('footer_text_color'), 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'footer_text_color', array( 'label' => esc_html__( 'Footer Text Color', 'best-shop' ), 'section' => 'colors', 'settings' => 'footer_text_color' ))); } endif; add_action( 'customize_register', 'best_shop_customize_register_color' );