Last active
September 29, 2017 02:56
-
-
Save bkaminski/df44e8fd9a55a9f57a64d3c227fed19a to your computer and use it in GitHub Desktop.
Bootstrap Carousel WP Theme Customizer Create Section
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
// ADD IMAGE, TEXT, and URL (Heading, Subtext, Link) TO FIRST IMAGE IN SEQUENCE -- WP THEME CUSTOMIZER | |
function theme_slug_home_img_slide_1( $wp_customize ) { | |
$wp_customize->add_section( | |
'home_slide_img_one', | |
array( | |
'title' => 'Home Image Slide 1', | |
'description' => 'This section updates all information pertaining to the first image in the slideshow on the home page', | |
'priority' => 1, | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment