function mk_customizer_amy_image($wp_customize) { $wp_customize->add_setting('amy_image'); $wp_customize->add_control(new WP_Customize_Image_Control( $wp_customize, 'amy_image', array( 'label' => 'Amy Image', 'section' => 'title_tagline', 'settings' => 'amy_image', ) )); }$wp_customize->add_setting('gabby_image'); $wp_customize->add_control(new WP_Customize_Image_Control( $wp_customize, 'gabby_image', array( 'label' => 'Gabby Image', 'section' => 'title_tagline', 'settings' => 'gabby_image', ) )); add_action('customize_register', 'mk_customizer_amy_image');