* @copyright (c) 2006-2019 Eoxia * @license AGPLv3 * @package beflex * @since 3.0.0 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials */ /** * [cd_customizer_settings description] * @param [type] $wp_customize [description] * @return [type] [description] */ function beflex_customize_register( $wp_customize ) { $wp_customize->add_setting( 'beflex_primary_color', array( 'default' => '#0e6eff', 'sanitize_callback' => 'sanitize_hex_color', 'capability' => 'edit_theme_options', 'type' => 'theme_mod', )); $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'beflex_primary_color', array( 'label' => __( 'Primary color', 'beflex' ), 'section' => 'colors', 'settings' => 'beflex_primary_color', ))); } add_action( 'customize_register', 'beflex_customize_register' );