Last active
September 29, 2017 02:57
-
-
Save bkaminski/734b93f499eccd8aa4356d9616281cd4 to your computer and use it in GitHub Desktop.
Bootstrap Carousel WordPress Theme Customizer (Upload Image)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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