%PDF- %PDF-
| Direktori : /home/gachan/www/wp-content/themes/jekas/inc/redux/options/ |
| Current File : /home/gachan/www/wp-content/themes/jekas/inc/redux/options/option-category.php |
<?php
/**
* Created by PhpStorm.
* User: admin
* Date: 2/08/15
* Time: 12:38
*/
$this->sections[] = array(
'title' => esc_html__('Page category options','jekas'),
'id' => 'category',
'subsection' => true,
'icon' => 'el el-folder',
'fields' => array(
array(
'id' => 'cat_title',
'type' => 'text',
'title' => esc_html__('Category Page Title','jekas'),
'default' => esc_html__('Category Page Info', 'jekas' ),
),
array(
'id' => 'cat_desc',
'type' => 'textarea',
'title' => esc_html__('Category Page Description','redux-framework-j'),
),
array(
'id' => 'cat_sidebar_position',
'type' => 'button_set',
'title' => esc_html__('Category Sidebar position','jekas'),
'options' => array(
'left' => esc_html__('Left','jekas'),
'right' => esc_html__('Right','jekas'),
'none' => esc_html__('None','jekas'),
),
'default' => 'right',
),
array(
'id' => 'cat_sidebar_widget',
'type' => 'select',
'title' => esc_html__('Category Sidebar Widget','jekas'),
'options' => $sidebar_opts,
'default' => key($sidebar_opts),
'required' => array('cat_sidebar_position','!=','none'),
),
array(
'id' => 'cat_header',
'type' => 'select',
'title' => esc_html__( 'Category header style', 'jekas' ),
'options' => array(
'section_title' => esc_html__('Default','jekas'),
'section_title-02' => esc_html__('Image Background','jekas'),
'section_title-03' => esc_html__('Parallax','jekas'),
'none' => esc_html__('None','jekas'),
),
'default' => 'section_title'
),
array(
'id' => 'cat_bg_color',
'type' => 'color_rgba',
'title' => esc_html__( 'Background Color', 'jekas' ),
'subtitle' => esc_html__( 'Color background is active for Image Background option.', 'jekas' ),
'default' => array(
'color' => '#7e33dd',
'alpha' => '.8'
),
'output' => '',
'mode' => 'background',
'validate' => 'colorrgba',
'required' => array( 'cat_header', '=', array('section_title-02','section_title-03') ),
),
array(
'id' => 'cat_bg_img',
'type' => 'media',
'title' => esc_html__( 'Header background Image', 'jekas' ),
'compiler' => 'true',
'mode' => false,
'required' => array( 'cat_header', '=', array('section_title-02','section_title-03')),
),
array(
'id' => 'cat_footer',
'type' => 'select',
'title' => esc_html__('Category Footer','jekas'),
'options' => $jekas_footers,
),
array(
'id' => 'cat_post_style',
'type' => 'button_set',
'title' => esc_html__('Post list style show','jekas'),
'options' => array(
'post_format' => esc_html__('Post format','jekas'),
'column_sumary' => esc_html__('Columns Sumary','jekas'),
),
'default' => 'column_sumary',
),
),
);