add_panel( 'appearance_settings', array( 'title' => __( 'Appearance Settings', 'adventure-travel' ), 'priority' => 25, 'capability' => 'edit_theme_options', 'description' => __( 'Change color and body background.', 'adventure-travel' ), ) ); /** Move Background Image section to appearance panel */ $wp_customize->get_section( 'colors' )->panel = 'appearance_settings'; $wp_customize->get_section( 'colors' )->priority = 30; $wp_customize->get_section( 'background_image' )->panel = 'appearance_settings'; $wp_customize->get_section( 'background_image' )->priority = 35; $wp_customize->get_section( 'background_image' )->title = __( 'Background', 'adventure-travel' ); $wp_customize->get_control( 'background_color' )->description = __( 'Background color of the theme.', 'adventure-travel' ); } add_action( 'customize_register', 'adventure_travel_customize_register_appearance' );