File: /home/t/h/a/thanexcelr/www/wp-content/themes/fifteen/framework/customizer/_customizer_controls.php
<?php
/*
** Customizer Controls
*/
if (class_exists('WP_Customize_Control')) {
class Fifteen_WP_Customize_Category_Control extends WP_Customize_Control {
/**
* Render the control's content.
*/
public function render_content() {
$dropdown = wp_dropdown_categories(
array(
'name' => '_customize-dropdown-categories-' . $this->id,
'echo' => 0,
'show_option_none' => __( '— Select —', 'fifteen' ),
'option_none_value' => '0',
'selected' => $this->value(),
)
);
$dropdown = str_replace( '<select', '<select ' . $this->get_link(), $dropdown );
printf(
'<label class="customize-control-select"><span class="customize-control-title">%s</span> %s</label>',
$this->label,
$dropdown
);
}
}
}
if (class_exists('WP_Customize_Control')) {
class Fifteen_WP_Customize_Upgrade_Control extends WP_Customize_Control {
/**
* Render the control's content.
*/
public function render_content() {
printf(
'<label class="customize-control-upgrade"><span class="customize-control-title">%s</span> %s</label>',
$this->label,
$this->description
);
}
}
}