HEX
Server: Apache
System: Linux webm020.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: thanexcelr (29537)
PHP: 7.3.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/thanexcelr/www/wp-content/themes/fifteen/framework/customizer/mail_phone.php
<?php
function fifteen_customize_register_header_mail( $wp_customize ) {
	
	$wp_customize->add_section('fifteen_mail', array(
		'title' => __('Email & Phone','fifteen'),
		'panel' => 'fifteen_header_panel'	
	));
	
	$wp_customize->add_setting( 'fifteen_mailid' , array(
	    'sanitize_callback' => 'sanitize_text_field'
	) );
	
	$wp_customize->add_control(
	'fifteen_mailid', array(
		'label' => __('Your Email','fifteen'),
		'section' => 'fifteen_mail',
		'settings' => 'fifteen_mailid',
		'type' => 'email',
	) );
	
	$wp_customize->add_setting( 'fifteen_phone' , array(
	    'sanitize_callback' => 'sanitize_text_field'
	) );
	
	$wp_customize->add_control(
	'fifteen_phone', array(
		'label' => __('Your Phone No.','fifteen'),
		'section' => 'fifteen_mail',
		'settings' => 'fifteen_phone',
		'type' => 'tel',
	) );
	
}
add_action( 'customize_register', 'fifteen_customize_register_header_mail' );