add_section( 'attorney_header_section' , array( 'title' => __( 'General', 'attorney' ), 'priority' => 32, 'description' => __( 'Please fill these data so they show on the header of the website', 'attorney' ), ) ); $wp_customize->add_setting( 'attorney_header_phone_number', array ( 'sanitize_callback' => 'wp_filter_nohtml_kses', ) ); $wp_customize->add_control( 'attorney_header_phone_number', array( 'label' => __( 'Enter your phone number', 'attorney' ), 'section' => 'attorney_header_section', 'settings' => 'attorney_header_phone_number', 'priority' => 101, ) ); } endif; add_action('customize_register', 'attorney_theme_customize_general');