Skip to content

Instantly share code, notes, and snippets.

@bkaminski
Last active September 29, 2017 02:57
Show Gist options
  • Save bkaminski/734b93f499eccd8aa4356d9616281cd4 to your computer and use it in GitHub Desktop.
Save bkaminski/734b93f499eccd8aa4356d9616281cd4 to your computer and use it in GitHub Desktop.
Bootstrap Carousel WordPress Theme Customizer (Upload Image)
$wp_customize->add_setting( 'theme_slug_slide_img_upload_one' );
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize,'theme_slug_slide_img_upload_one', array(
'label' => __( 'Upload image for first slide in sequence:', 'theme_slug' ),
'section' => 'home_slide_img_one',
'settings' => 'theme_slug_slide_img_upload_one',
'description' => 'Upload your first slider image here.'
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment