%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-archive.php |
<?php
/**
* Created by PhpStorm.
* User: admin
* Date: 2/08/15
* Time: 12:12
*/
$this->sections[] = array(
'title' => esc_html__('Page archives options','jekas'),
'id' => 'archive',
'subsection' => true,
'icon' => 'el el-briefcase',
'fields' => array(
array(
'id' => 'archive_sidebar_position',
'type' => 'button_set',
'title' => esc_html__('Archive Sidebar position','jekas'),
'options' => array(
'left' => esc_html__('Left','jekas'),
'right' => esc_html__('Right','jekas'),
'none' => esc_html__('None','jekas'),
),
'default' => 'right',
),
array(
'id' => 'archive_sidebar_widget',
'type' => 'select',
'title' => esc_html__('Archive Sidebar Widget','jekas'),
'options' => $sidebar_opts,
'default' => key($sidebar_opts),
'required' => array('archive_sidebar_position','!=','none'),
),
array(
'id' => 'archive_header',
'type' => 'select',
'title' => esc_html__( 'Archive 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' => 'archive_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( 'archive_header', '=', array('section_title-02','section_title-03') ),
),
array(
'id' => 'archive_bg_img',
'type' => 'media',
'title' => esc_html__( 'Header background Image', 'jekas' ),
'compiler' => 'true',
'mode' => false,
'required' => array( 'archive_header', '=', array('section_title-02','section_title-03')),
),
array(
'id' => 'archive_footer',
'type' => 'select',
'title' => esc_html__('Archive Footer','jekas'),
'options' => $jekas_footers,
),
array(
'id' => 'archive_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',
),
),
);