| Server IP : 51.91.236.255 / Your IP : 216.73.217.120 Web Server : Apache System : Linux webm002.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : laureet ( 1012854) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/laureet/www/wp-content/themes/rock-singer/inc/customizer/home-sections/ |
Upload File : |
<?php
/**
* Featured Slider options.
*
* @package Rock Singer
*/
$default = rock_singer_get_default_theme_options();
// Featured Featured Slider Section
$wp_customize->add_section( 'section_featured_slider',
array(
'title' => __( 'Slider Section', 'rock-singer' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'home_page_panel',
)
);
// Enable Featured Slider Section
$wp_customize->add_setting('theme_options[enable_featured_slider_section]',
array(
'default' => $default['enable_featured_slider_section'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_checkbox'
)
);
$wp_customize->add_control('theme_options[enable_featured_slider_section]',
array(
'label' => __('Enable Section', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[enable_featured_slider_section]',
'type' => 'checkbox',
)
);
// Number of items
$wp_customize->add_setting('theme_options[number_of_featured_slider_items]',
array(
'default' => $default['number_of_featured_slider_items'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_number_range'
)
);
$wp_customize->add_control('theme_options[number_of_featured_slider_items]',
array(
'label' => __('Number Of Items (Max: 50)', 'rock-singer'),
'description' => __('Click on Publish and refresh after changing the value.', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[number_of_featured_slider_items]',
'type' => 'number',
'active_callback' => 'rock_singer_featured_slider_active',
'input_attrs' => array(
'min' => 1,
'max' => 50,
'step' => 1,
),
)
);
$number_of_featured_slider_items = rock_singer_get_option( 'number_of_featured_slider_items' );
for( $i=1; $i<=$number_of_featured_slider_items; $i++ ) {
// Slide Image
$wp_customize->add_setting('theme_options[featured_slider_slide_image_'.$i.']',
array(
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_image'
)
);
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize,
'theme_options[featured_slider_slide_image_'.$i.']',
array(
'label' => sprintf( __('Slide Image #%1$s', 'rock-singer'), $i),
'section' => 'section_featured_slider',
'settings' => 'theme_options[featured_slider_slide_image_'.$i.']',
'active_callback' => 'rock_singer_featured_slider_active',
'type' => 'image',
)
)
);
// Slide Content
$wp_customize->add_setting('theme_options[featured_slider_content_'.$i.']',
array(
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field'
)
);
$wp_customize->add_control('theme_options[featured_slider_content_'.$i.']',
array(
'label' => sprintf( __('Subtitle #%1$s', 'rock-singer'), $i),
'section' => 'section_featured_slider',
'settings' => 'theme_options[featured_slider_content_'.$i.']',
'active_callback' => 'rock_singer_featured_slider_active',
'type' => 'text'
)
);
// Slide Title
$wp_customize->add_setting('theme_options[featured_slider_title_'.$i.']',
array(
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field'
)
);
$wp_customize->add_control('theme_options[featured_slider_title_'.$i.']',
array(
'label' => sprintf( __('Title #%1$s', 'rock-singer'), $i),
'section' => 'section_featured_slider',
'settings' => 'theme_options[featured_slider_title_'.$i.']',
'active_callback' => 'rock_singer_featured_slider_active',
'type' => 'text'
)
);
// Button Text One
$wp_customize->add_setting('theme_options[featured_slider_btn_text_'.$i.']',
array(
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field'
)
);
$wp_customize->add_control('theme_options[featured_slider_btn_text_'.$i.']',
array(
'label' => sprintf( __('Button Label #%1$s', 'rock-singer'), $i),
'section' => 'section_featured_slider',
'settings' => 'theme_options[featured_slider_btn_text_'.$i.']',
'active_callback' => 'rock_singer_featured_slider_active',
'type' => 'text'
)
);
// Button Url One
$wp_customize->add_setting('theme_options[featured_slider_btn_url_'.$i.']',
array(
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw'
)
);
$wp_customize->add_control('theme_options[featured_slider_btn_url_'.$i.']',
array(
'label' => sprintf( __('Button Url #%1$s', 'rock-singer'), $i),
'section' => 'section_featured_slider',
'settings' => 'theme_options[featured_slider_btn_url_'.$i.']',
'active_callback' => 'rock_singer_featured_slider_active',
'type' => 'url'
)
);
}
// Slider Speed
$wp_customize->add_setting('theme_options[data_slick_speed]',
array(
'default' => $default['data_slick_speed'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_number_range'
)
);
$wp_customize->add_control('theme_options[data_slick_speed]',
array(
'label' => __('Slider Speed', 'rock-singer'),
'description' => __('Save & Refresh the customizer to see its effect. Maximum is 5000.', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[data_slick_speed]',
'type' => 'number',
'active_callback' => 'rock_singer_featured_slider_active',
'input_attrs' => array(
'min' => 0,
'max' => 5000,
'step' => 100,
),
)
);
// Slider Fade
$wp_customize->add_setting('theme_options[data_slick_fade]',
array(
'default' => $default['data_slick_fade'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_checkbox'
)
);
$wp_customize->add_control('theme_options[data_slick_fade]',
array(
'label' => __('Slider Fade', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[data_slick_fade]',
'type' => 'checkbox',
'active_callback' => 'rock_singer_featured_slider_active',
)
);
// Slider Infinite
$wp_customize->add_setting('theme_options[data_slick_infinite]',
array(
'default' => $default['data_slick_infinite'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_checkbox'
)
);
$wp_customize->add_control('theme_options[data_slick_infinite]',
array(
'label' => __('Slide Infinite', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[data_slick_infinite]',
'type' => 'checkbox',
'active_callback' => 'rock_singer_featured_slider_active',
)
);
// Slider Autoplay
$wp_customize->add_setting('theme_options[data_slick_autoplay]',
array(
'default' => $default['data_slick_autoplay'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_checkbox'
)
);
$wp_customize->add_control('theme_options[data_slick_autoplay]',
array(
'label' => __('Slider Autoplay', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[data_slick_autoplay]',
'type' => 'checkbox',
'active_callback' => 'rock_singer_featured_slider_active',
)
);
// Slider Draggable
$wp_customize->add_setting('theme_options[data_slick_draggable]',
array(
'default' => $default['data_slick_draggable'],
'type' => 'theme_mod',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'rock_singer_sanitize_checkbox'
)
);
$wp_customize->add_control('theme_options[data_slick_draggable]',
array(
'label' => __('Slider Draggable', 'rock-singer'),
'section' => 'section_featured_slider',
'settings' => 'theme_options[data_slick_draggable]',
'type' => 'checkbox',
'active_callback' => 'rock_singer_featured_slider_active',
)
);