????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.139.86.128 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/themes/Avada/includes/options/ |
Upload File : |
<?php // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * Slideshows settings * * @param array $sections An array of our sections. * @return array */ function avada_options_section_slideshows( $sections ) { $sections['slideshows'] = array( 'label' => esc_html__( 'Slideshows', 'Avada' ), 'id' => 'heading_slideshows', 'priority' => 19, 'icon' => 'el-icon-picture', 'fields' => array( 'posts_slideshow_number' => array( 'label' => esc_html__( 'Posts Slideshow Images', 'Avada' ), 'description' => esc_html__( 'Controls the number of featured image boxes for blog/portfolio posts.', 'Avada' ), 'id' => 'posts_slideshow_number', 'default' => '5', 'type' => 'slider', 'choices' => array( 'min' => '1', 'max' => '30', 'step' => '1', ), ), 'slideshow_autoplay' => array( 'label' => esc_html__( 'Autoplay', 'Avada' ), 'description' => esc_html__( 'Turn on to autoplay the slideshows.', 'Avada' ), 'id' => 'slideshow_autoplay', 'default' => '1', 'type' => 'switch', ), 'slideshow_smooth_height' => array( 'label' => esc_html__( 'Smooth Height', 'Avada' ), 'description' => esc_html__( 'Turn on to enable smooth height on slideshows when using images with different heights. Please note, smooth height is disabled on blog grid layout.', 'Avada' ), 'id' => 'slideshow_smooth_height', 'default' => '0', 'type' => 'switch', ), 'slideshow_speed' => array( 'label' => esc_html__( 'Slideshow Speed', 'Avada' ), 'description' => esc_html__( 'Controls the speed of slideshows for the slider element and sliders within posts. ex: 1000 = 1 second.', 'Avada' ), 'id' => 'slideshow_speed', 'default' => '7000', 'type' => 'slider', 'choices' => array( 'min' => '100', 'max' => '20000', 'step' => '50', ), ), 'pagination_video_slide' => array( 'label' => esc_html__( 'Pagination Circles Below Video Slides', 'Avada' ), 'description' => esc_html__( 'Turn on to show pagination circles below a video slide for the slider element. Turn off to hide them on video slides.', 'Avada' ), 'id' => 'pagination_video_slide', 'default' => '0', 'type' => 'switch', ), 'slider_nav_box_dimensions' => array( 'label' => esc_html__( 'Navigation Box Dimensions', 'Avada' ), 'description' => esc_html__( 'Controls the width and height of the navigation box.', 'Avada' ), 'id' => 'slider_nav_box_dimensions', 'units' => false, 'default' => array( 'width' => '30px', 'height' => '30px', ), 'type' => 'dimensions', ), 'slider_arrow_size' => array( 'label' => esc_html__( 'Navigation Arrow Size', 'Avada' ), 'description' => esc_html__( 'Controls the font size of the navigation arrow.', 'Avada' ), 'id' => 'slider_arrow_size', 'default' => '14px', 'type' => 'dimension', ), ), ); return $sections; }