add_section( 'ophiro_hero', array( 'title' => esc_html__( 'Hero Section', 'ophiro' ), 'priority' => 30, ) ); $wp_customize->add_setting( 'ophiro_hero_eyebrow', array( 'default' => 'Ophiro Ventures', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'ophiro_hero_eyebrow', array( 'label' => esc_html__( 'Hero Eyebrow Text', 'ophiro' ), 'section' => 'ophiro_hero', 'type' => 'text', ) ); $wp_customize->add_setting( 'ophiro_hero_title', array( 'default' => 'Ophiro', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'ophiro_hero_title', array( 'label' => esc_html__( 'Hero Title', 'ophiro' ), 'section' => 'ophiro_hero', 'type' => 'text', ) ); $wp_customize->add_setting( 'ophiro_hero_subtitle', array( 'default' => 'Not a tour. A discovery.', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'ophiro_hero_subtitle', array( 'label' => esc_html__( 'Hero Subtitle', 'ophiro' ), 'section' => 'ophiro_hero', 'type' => 'text', ) ); $wp_customize->add_setting( 'ophiro_hero_bg', array( 'default' => '', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'ophiro_hero_bg', array( 'label' => esc_html__( 'Hero Background Image', 'ophiro' ), 'section' => 'ophiro_hero', ) ) ); // Footer Section $wp_customize->add_section( 'ophiro_footer', array( 'title' => esc_html__( 'Footer Settings', 'ophiro' ), 'priority' => 35, ) ); $wp_customize->add_setting( 'ophiro_sltda_number', array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'ophiro_sltda_number', array( 'label' => esc_html__( 'SLTDA Registration Number', 'ophiro' ), 'description' => esc_html__( 'Enter the official SLTDA registration number.', 'ophiro' ), 'section' => 'ophiro_footer', 'type' => 'text', ) ); $wp_customize->add_setting( 'ophiro_footer_testimonial', array( 'default' => 'An extraordinary journey through Sri Lanka. Every detail was perfectly orchestrated.', 'sanitize_callback' => 'sanitize_textarea_field', ) ); $wp_customize->add_control( 'ophiro_footer_testimonial', array( 'label' => esc_html__( 'Footer Testimonial', 'ophiro' ), 'section' => 'ophiro_footer', 'type' => 'textarea', ) ); $wp_customize->add_setting( 'ophiro_footer_testimonial_author', array( 'default' => 'The Harrington Family — Signature Journey, 2024', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'ophiro_footer_testimonial_author', array( 'label' => esc_html__( 'Testimonial Author', 'ophiro' ), 'section' => 'ophiro_footer', 'type' => 'text', ) ); $wp_customize->add_setting( 'ophiro_company_phone', array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'ophiro_company_phone', array( 'label' => esc_html__( 'Phone Number', 'ophiro' ), 'section' => 'ophiro_footer', 'type' => 'text', ) ); $wp_customize->add_setting( 'ophiro_company_email', array( 'default' => '', 'sanitize_callback' => 'sanitize_email', ) ); $wp_customize->add_control( 'ophiro_company_email', array( 'label' => esc_html__( 'Email Address', 'ophiro' ), 'section' => 'ophiro_footer', 'type' => 'email', ) ); $wp_customize->add_setting( 'ophiro_company_address', array( 'default' => '', 'sanitize_callback' => 'sanitize_textarea_field', ) ); $wp_customize->add_control( 'ophiro_company_address', array( 'label' => esc_html__( 'Company Address', 'ophiro' ), 'section' => 'ophiro_footer', 'type' => 'textarea', ) ); } add_action( 'customize_register', 'ophiro_customize_register' );