/home/blackyak/www/wordpress/wp-content/themes/travivu/includes/options/opts-portfolio.php
<?php
Redux::setSection( $opt_name, array(
'title' => esc_html__( 'Portfolio Options', 'travivu' ),
'icon' => 'el-icon-website',
'fields' => array(
array(
'id' => 'slug_portfolio_post_type',
'type' => 'info',
'raw' => '<h3 style="margin: 0;">' . esc_html__( 'Slug url portfolio post type', 'travivu' ) . '</h3>'
),
array(
'id' => 'slug_portfolio',
'type' => 'text',
'title' => esc_html__('Slug Portfolio', 'travivu'),
'default' => 'case'
),
array(
'id' => 'portfolio_archive_info',
'type' => 'info',
'icon' => true,
'raw' => '<h3 style="margin: 0;">' . esc_html__( 'Archive/Listing', 'travivu' ) . '</h3>',
),
array(
'id' => 'portfolio_columns_lg',
'type' => 'select',
'title' => esc_html__('Display Columns for Large Screen', 'travivu'),
'options' => array(
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6'
),
'default' => '3'
),
array(
'id' => 'portfolio_columns_md',
'type' => 'select',
'title' => esc_html__('Display Columns for Medium Screen', 'travivu'),
'options' => array(
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6'
),
'default' => '2'
),
array(
'id' => 'portfolio_columns_sm',
'type' => 'select',
'title' => esc_html__('Display Columns for Small Screen', 'travivu'),
'options' => array(
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6'
),
'default' => '2'
),
array(
'id' => 'portfolio_columns_xs',
'type' => 'select',
'title' => esc_html__('Display Columns for Extra Small Screen', 'travivu'),
'options' => array(
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6'
),
'default' => '1'
),
)
));