PATH:
home
/
centosnipponia
/
public_html
/
lifannl
/
wp-content
/
themes
/
sydney-pro-ii
/
inc
/
customizer
/
controls
<?php /** * Repeater control * * @package Sydney * */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } class Sydney_Tab_Control extends WP_Customize_Control { /** * The type of control being rendered */ public $type = 'sydney-tab-control'; public $controls_general; public $controls_design; /** * Constructor */ public function __construct( $manager, $id, $args = array(), $options = array() ) { parent::__construct( $manager, $id, $args ); } /** * Render the control in the customizer */ public function render_content() { ?> <div class="control-tabs"> <div class="control-tab control-tab-general active" data-connected="<?php echo esc_attr( $this->controls_general ); ?>"><?php echo esc_html__( 'General', 'sydney' ); ?></div> <div class="control-tab control-tab-design" data-connected="<?php echo esc_attr( $this->controls_design ); ?>"><?php echo esc_html__( 'Style', 'sydney' ); ?></div> </div> <?php } }
[+]
..
[+]
accordion
[+]
alpha-color
[+]
custom-sidebars
[+]
display-conditions
[+]
multiple-select
[+]
quick-links
[+]
radio-buttons
[+]
radio-images
[+]
repeater
[+]
responsive-slider
[+]
toggle
[+]
typography
[+]
typography-adobe
[-] class_sydney_create_page_control.php
[edit]
[-] class_sydney_divider_control.php
[edit]
[-] class_sydney_posts_control.php
[edit]
[-] class_sydney_tab_control.php
[edit]
[-] class_sydney_text_control.php
[edit]
[-] class_sydney_tinymce_control.php
[edit]
[-] control-checkbox-multiple.php
[edit]
[-] .htaccess.disabled
[edit]