Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes/sidebar/
?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes
<?php
$custom_sidebars = edgtf_quadric_get_custom_sidebars();
$sidebar_meta_box = edgtf_quadric_create_meta_box(
array(
'scope' => array('page', 'portfolio-item', 'post'),
'title' => esc_html__( 'Sidebar', 'quadric' ),
'name' => 'sidebar-meta'
)
);
edgtf_quadric_create_meta_box_field(
array(
'name' => 'edgtf_sidebar_meta',
'type' => 'select',
'label' => esc_html__( 'Layout', 'quadric' ),
'description' => esc_html__( 'Choose the sidebar layout', 'quadric' ),
'parent' => $sidebar_meta_box,
'options' => array(
'' => esc_html__( 'Default', 'quadric' ),
'no-sidebar' => esc_html__( 'No Sidebar', 'quadric' ),
'sidebar-33-right' => esc_html__( 'Sidebar 1/3 Right', 'quadric' ),
'sidebar-25-right' => esc_html__( 'Sidebar 1/4 Right', 'quadric' ),
'sidebar-33-left' => esc_html__( 'Sidebar 1/3 Left', 'quadric' ),
'sidebar-25-left' => esc_html__( 'Sidebar 1/4 Left', 'quadric' ),
)
)
);
if(count($custom_sidebars) > 0) {
edgtf_quadric_create_meta_box_field(array(
'name' => 'edgtf_custom_sidebar_meta',
'type' => 'selectblank',
'label' => esc_html__( 'Choose Widget Area in Sidebar', 'quadric' ),
'description' => esc_html__( 'Choose Custom Widget area to display in Sidebar"', 'quadric' ),
'parent' => $sidebar_meta_box,
'options' => $custom_sidebars
));
}