
">

">

">

">
$layout ){
$v = $this->value() ? $this->value() : 'fullwidth' ;
$selected = ( $v == $key)?' selected="selected" ': '';
$output[] = '
';
}
$dropdown = '
';
$dropdown = str_replace('
';
}
}
}
if ( class_exists( 'WP_Customize_Control' ) ) {
class WP_Customize_Dropdown_Categories_Control extends WP_Customize_Control {
public $type = 'dropdown-categories';
public function render_content() {
$dropdown = wp_dropdown_categories(
array(
'name' => '_customize-dropdown-categories-' . $this->id,
'echo' => 0,
'hide_empty' => false,
'show_option_none' => '— ' . __('Select', 'basee') . ' —',
'hide_if_empty' => false,
'selected' => $this->value(),
)
);
$dropdown = str_replace('