<?php
function dreamsrent_customize_register( $wp_customize ) {
/* Remove Colors & Header Image Customize */
$wp_customize->remove_section('colors');
$wp_customize->remove_section('header_image');
}
function dreamsrent_fun_sanitize_callback($value){
return $value;
}
add_action( 'customize_register', 'dreamsrent_customize_register' );