add_section( 'footer_settings', array( 'title' => __( 'Footer Settings', 'travel-booking' ), 'priority' => 150, 'capability' => 'edit_theme_options', ) ); /** Footer background image */ $wp_customize->add_setting( 'footer_bg_image', array( 'default' => get_template_directory_uri() .'/images/bg-footer.jpg', 'sanitize_callback' => 'travel_booking_sanitize_image' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'footer_bg_image', array( 'label' => __( 'Footer Background Image', 'travel-booking' ), 'section' => 'footer_settings', ) ) ); /** Footer Copyright */ $wp_customize->add_setting( 'footer_copyright', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'footer_copyright', array( 'label' => __( 'Footer Copyright', 'travel-booking' ), 'section' => 'footer_settings', 'type' => 'textarea', ) ); $wp_customize->selective_refresh->add_partial( 'footer_copyright', array( 'selector' => '.footer-b .copyright', 'render_callback' => 'travel_booking_get_footer_copyright', ) ); } endif; add_action( 'customize_register', 'travel_booking_customize_register_footer' );