hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-contentOLD/themes/blossom-fashion/inc/customizer/ |
<?php
/**
* Color Setting
*
* @package Blossom_Fashion
*/
function blossom_fashion_customize_register_color( $wp_customize ) {
/** Primary Color*/
$wp_customize->add_setting(
'primary_color', array(
'default' => '#f1d3d3',
'sanitize_callback' => 'sanitize_hex_color'
)
);
$wp_customize->add_control(
new WP_Customize_Color_Control(
$wp_customize,
'primary_color',
array(
'label' => __( 'Primary Color', 'blossom-fashion' ),
'description' => __( 'Primary color of the theme.', 'blossom-fashion' ),
'section' => 'colors',
'priority' => 5,
)
)
);
}
add_action( 'customize_register', 'blossom_fashion_customize_register_color' );