<?php
/*
*
* ---> START SECTIONS
*
*/
/*
As of Redux 3.5+, there is an extensive API. This API can be used in a mix/match mode allowing for
*/
// -> START 基础字段
Redux::setSection( $opt_name, array(
'title' => __( '基础字段', 'redux-framework-demo' ),
'id' => 'basic',
'desc' => __( 'These are really basic fields!', 'redux-framework-demo' ),
'customizer_width' => '400px',
'icon' => 'el el-home'
) );
Redux::setSection( $opt_name, array(
'title' => __( '复选框', 'redux-framework-demo' ),
'id' => 'basic-checkbox',
'subsection' => true,
'customizer_width' => '450px',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/checkbox/" target="_blank">docs.reduxframework.com/core/fields/checkbox/</a>',
'fields' => array(
array(
'id' => 'opt-checkbox',
'type' => 'checkbox',
'title' => __( '通用复选框设置', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'default' => '1'// 1 = on | 0 = off
),
array(
'id' => 'opt-multi-check',
'type' => 'checkbox',
'title' => __( '多项复选设置', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value pairs for multi checkbox options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
//See how std has changed? you also don't need to specify opts that are 0.
'default' => array(
'1' => '1',
'2' => '0',
'3' => '0'
)
),
array(
'id' => 'opt-checkbox-data',
'type' => 'checkbox',
'title' => __( '多项复选设置 (包含菜单信息)', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'data' => 'menu'
),
array(
'id' => 'opt-checkbox-sidebar',
'type' => 'checkbox',
'title' => __( '多项复选设置 (包含侧栏信息)', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'data' => 'sidebars'
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '单选', 'redux-framework-demo' ),
'id' => 'basic-Radio',
'subsection' => true,
'customizer_width' => '500px',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/radio/" target="_blank">docs.reduxframework.com/core/fields/radio/</a>',
'fields' => array(
array(
'id' => 'opt-radio',
'type' => 'radio',
'title' => __( '通用单选', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value pairs for radio options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
'default' => '2'
),
array(
'id' => 'opt-radio-data',
'type' => 'radio',
'title' => __( '单选 (包含菜单信息)', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'data' => 'menu'
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '文本框', 'redux-framework-demo' ),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/text/" target="_blank">docs.reduxframework.com/core/fields/text/</a>',
'id' => 'basic-Text',
'subsection' => true,
'customizer_width' => '700px',
'fields' => array(
array(
'id' => 'text-example',
'type' => 'text',
'title' => __( '通用文本框', 'redux-framework-demo' ),
'subtitle' => __( '子标题', 'redux-framework-demo' ),
'desc' => __( '描述', 'redux-framework-demo' ),
'default' => '默认文字',
),
array(
'id' => 'text-example-hint',
'type' => 'text',
'title' => __( '带提示的文本框', 'redux-framework-demo' ),
'subtitle' => __( '子标题', 'redux-framework-demo' ),
'desc' => __( '描述', 'redux-framework-demo' ),
'default' => '默认文字',
'text_hint' => array(
'title' => 'Hint Title',
'content' => 'Hint content about this field!'
)
),
array(
'id' => 'text-placeholder',
'type' => 'text',
'title' => __( '带占位文字的文本框', 'redux-framework-demo' ),
'subtitle' => __( '子标题', 'redux-framework-demo' ),
'desc' => __( '描述', 'redux-framework-demo' ),
'placeholder' => 'Placeholder Text',
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '多项文本框', 'redux-framework-demo' ),
'id' => 'basic-Multi Text',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/multi-text/" target="_blank">docs.reduxframework.com/core/fields/multi-text/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-multitext',
'type' => 'multi_text',
'title' => __( '可新增文本框设置项', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
)
) );
/* 密码 */
/* Redux::setSection( $opt_name, array(
'title' => __( 'Password', 'redux-framework-demo' ),
'id' => 'basic-Password',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/password/" target="_blank">docs.reduxframework.com/core/fields/password/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'password',
'type' => 'password',
'username' => true,
'title' => 'Password Field',
//'placeholder' => array(
// 'username' => 'Username',
// 'password' => 'Password',
//)
)
)
) ); */
Redux::setSection( $opt_name, array(
'title' => __( '文本域', 'redux-framework-demo' ),
'id' => 'basic-Textarea',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/textarea/" target="_blank">docs.reduxframework.com/core/fields/textarea/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-textarea',
'type' => 'textarea',
'title' => __( '文本域-支持html标签', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'default' => '默认文字',
)
)
) );
// -> START 编辑器
Redux::setSection( $opt_name, array(
'title' => __( '编辑器', 'redux-framework-demo' ),
'id' => 'editor',
'customizer_width' => '500px',
'icon' => 'el el-edit',
) );
/* Redux::setSection( $opt_name, array(
'title' => __( 'WordPress 编辑器', 'redux-framework-demo' ),
'id' => 'editor-wordpress',
//'icon' => 'el el-home'
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/editor/" target="_blank">docs.reduxframework.com/core/fields/editor/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-editor',
'type' => 'editor',
'title' => __( 'Editor', 'redux-framework-demo' ),
'subtitle' => __( 'Use any of the features of WordPress editor inside your panel!', 'redux-framework-demo' ),
'default' => 'Powered by Redux Framework.',
),
array(
'id' => 'opt-editor-tiny',
'type' => 'editor',
'title' => __( 'Editor w/o Media Button', 'redux-framework-demo' ),
'default' => 'Powered by Redux Framework.',
'args' => array(
'wpautop' => false,
'media_buttons' => false,
'textarea_rows' => 5,
//'tabindex' => 1,
//'editor_css' => '',
'teeny' => false,
//'tinymce' => array(),
'quicktags' => false,
)
),
array(
'id' => 'opt-editor-full',
'type' => 'editor',
'title' => __( 'Editor - Full Width', 'redux-framework-demo' ),
'full_width' => true
),
),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/editor/" target="_blank">docs.reduxframework.com/core/fields/editor/</a>',
) );
*/
Redux::setSection( $opt_name, array(
'title' => __( 'ACE 编辑器', 'redux-framework-demo' ),
'id' => 'editor-ace',
//'icon' => 'el el-home'
'subsection' => true,
'desc' => __( '文档参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/ace-editor/" target="_blank">docs.reduxframework.com/core/fields/ace-editor/</a>',
'fields' => array(
array(
'id' => 'opt-ace-editor-css',
'type' => 'ace_editor',
'title' => __( 'CSS 代码', 'redux-framework-demo' ),
'subtitle' => __( '复制你的css代码到这里.', 'redux-framework-demo' ),
'mode' => 'css',
'theme' => 'monokai',
'desc' => '更多的代码模式可以看这里 <a href="' . 'http://' . 'ace.c9.io" target="_blank">' . 'http://' . 'ace.c9.io/</a>.',
'default' => "#header{\n margin: 0 auto;\n}"
),
array(
'id' => 'opt-ace-editor-js',
'type' => 'ace_editor',
'title' => __( 'JS 代码', 'redux-framework-demo' ),
'subtitle' => __( '复制你的js代码到这里.', 'redux-framework-demo' ),
'mode' => 'javascript',
'theme' => 'chrome',
'desc' => '更多的代码模式可以看这里 <a href="' . 'http://' . 'ace.c9.io" target="_blank">' . 'http://' . 'ace.c9.io/</a>.',
'default' => "jQuery(document).ready(function(){\n\n});"
),
array(
'id' => 'opt-ace-editor-php',
'type' => 'ace_editor',
'full_width' => true,
'title' => __( 'PHP 代码', 'redux-framework-demo' ),
'subtitle' => __( '复制你的php代码到这里.', 'redux-framework-demo' ),
'mode' => 'php',
'theme' => 'chrome',
'desc' => '更多的代码模式可以看这里 <a href="' . 'http://' . 'ace.c9.io" target="_blank">' . 'http://' . 'ace.c9.io/</a>.',
'default' => '<?php
echo "PHP String";'
),
)
) );
// -> START 颜色选择
Redux::setSection( $opt_name, array(
'title' => __( '颜色选择', 'redux-framework-demo' ),
'id' => 'color',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-brush'
) );
Redux::setSection( $opt_name, array(
'title' => __( '颜色', 'redux-framework-demo' ),
'id' => 'color-Color',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/color/" target="_blank">docs.reduxframework.com/core/fields/color/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-color-title',
'type' => 'color',
'output' => array( '.site-title' ),
'title' => __( '标题颜色', 'redux-framework-demo' ),
'subtitle' => __( '选择标题颜色 (默认: #000).', 'redux-framework-demo' ),
'default' => '#000000',
),
array(
'id' => 'opt-color-footer',
'type' => 'color',
'title' => __( '背景色', 'redux-framework-demo' ),
'subtitle' => __( '选择背景色 (默认: #dd9933).', 'redux-framework-demo' ),
'default' => '#dd9933',
'validate' => 'color',
),
),
) );
// 过渡色
/* Redux::setSection( $opt_name, array(
'title' => __( '颜色过渡', 'redux-framework-demo' ),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/color-gradient/" target="_blank">docs.reduxframework.com/core/fields/color-gradient/</a>',
'id' => 'color-gradient',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-color-header',
'type' => 'color_gradient',
'title' => __( 'Header Gradient Color Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'default' => array(
'from' => '#1e73be',
'to' => '#00897e'
)
),
)
) ); */
Redux::setSection( $opt_name, array(
'title' => __( '颜色 RGBA', 'redux-framework-demo' ),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/color-rgba/" target="_blank">docs.reduxframework.com/core/fields/color-rgba/</a>',
'id' => 'color-rgba',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-color-rgba',
'type' => 'color_rgba',
'title' => __( '颜色 RGBA', 'redux-framework-demo' ),
'subtitle' => __( 'RGBA 颜色格式', 'redux-framework-demo' ),
'default' => array(
'color' => '#7e33dd',
'alpha' => '.8'
),
//'output' => array( 'body' ),
'mode' => 'background',
//'validate' => 'colorrgba',
),
)
) );
/* // 链接色 带hover色设置
Redux::setSection( $opt_name, array(
'title' => __( 'Link Color', 'redux-framework-demo' ),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/link-color/" target="_blank">docs.reduxframework.com/core/fields/link-color/</a>',
'id' => 'color-link',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-link-color',
'type' => 'link_color',
'title' => __( 'Links Color Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//'regular' => false, // Disable Regular Color
//'hover' => false, // Disable Hover Color
//'active' => false, // Disable Active Color
//'visited' => true, // Enable Visited Color
'default' => array(
'regular' => '#aaa',
'hover' => '#bbb',
'active' => '#ccc',
)
),
)
) );
// 调色板
Redux::setSection( $opt_name, array(
'title' => __( '调色板', 'redux-framework-demo' ),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/palette-color/" target="_blank">docs.reduxframework.com/core/fields/palette-color/</a>',
'id' => 'color-palette',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-palette-color',
'type' => 'palette',
'title' => __( 'Palette Color Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'default' => 'red',
'palettes' => array(
'red' => array(
'#ef9a9a',
'#f44336',
'#ff1744',
),
'pink' => array(
'#fce4ec',
'#f06292',
'#e91e63',
'#ad1457',
'#f50057',
),
'cyan' => array(
'#e0f7fa',
'#80deea',
'#26c6da',
'#0097a7',
'#00e5ff',
),
)
),
)
) );
*/
/*
// -> START 综合设计域-包括margin padding color background-color border
Redux::setSection( $opt_name, array(
'title' => __( 'Design Fields', 'redux-framework-demo' ),
'id' => 'design',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-wrench'
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Background', 'redux-framework-demo' ),
'id' => 'design-background',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-background',
'type' => 'background',
'output' => array( 'body' ),
'title' => __( 'Body Background', 'redux-framework-demo' ),
'subtitle' => __( 'Body background with image, color, etc.', 'redux-framework-demo' ),
//'default' => '#FFFFFF',
),
),
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/background/" target="_blank">docs.reduxframework.com/core/fields/background/</a>',
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Border', 'redux-framework-demo' ),
'id' => 'design-border',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/border/" target="_blank">docs.reduxframework.com/core/fields/border/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-header-border',
'type' => 'border',
'title' => __( 'Header Border Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'output' => array( '.site-header' ),
// An array of CSS selectors to apply this font style to
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'default' => array(
'border-color' => '#1e73be',
'border-style' => 'solid',
'border-top' => '3px',
'border-right' => '3px',
'border-bottom' => '3px',
'border-left' => '3px'
)
),
array(
'id' => 'opt-header-border-expanded',
'type' => 'border',
'title' => __( 'Header Border Option', 'redux-framework-demo' ),
'subtitle' => __( 'Only color validation can be done on this field type', 'redux-framework-demo' ),
'output' => array( '.site-header' ),
'all' => false,
// An array of CSS selectors to apply this font style to
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'default' => array(
'border-color' => '#1e73be',
'border-style' => 'solid',
'border-top' => '3px',
'border-right' => '3px',
'border-bottom' => '3px',
'border-left' => '3px'
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Dimensions', 'redux-framework-demo' ),
'id' => 'design-dimensions',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/dimensions/" target="_blank">docs.reduxframework.com/core/fields/dimensions/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-dimensions',
'type' => 'dimensions',
'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, %
'units_extended' => 'true', // Allow users to select any type of unit
'title' => __( 'Dimensions (Width/Height) Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose width, height, and/or unit.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Width, Height, or Units.', 'redux-framework-demo' ),
'default' => array(
'width' => 200,
'height' => 100,
)
),
array(
'id' => 'opt-dimensions-width',
'type' => 'dimensions',
'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, %
'units_extended' => 'true', // Allow users to select any type of unit
'title' => __( 'Dimensions (Width) Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose width, height, and/or unit.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Width, Height, or Units.', 'redux-framework-demo' ),
'height' => false,
'default' => array(
'width' => 200,
'height' => 100,
)
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Spacing', 'redux-framework-demo' ),
'id' => 'design-spacing',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/spacing/" target="_blank">docs.reduxframework.com/core/fields/spacing/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-spacing',
'type' => 'spacing',
'output' => array( '.site-header' ),
// An array of CSS selectors to apply this font style to
'mode' => 'margin',
// absolute, padding, margin, defaults to padding
'all' => true,
// Have one field that applies to all
//'top' => false, // Disable the top
//'right' => false, // Disable the right
//'bottom' => false, // Disable the bottom
//'left' => false, // Disable the left
//'units' => 'em', // You can specify a unit value. Possible: px, em, %
//'units_extended'=> 'true', // Allow users to select any type of unit
//'display_units' => 'false', // Set to false to hide the units if the units are specified
'title' => __( 'Padding/Margin Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose the spacing or margin they want.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units.', 'redux-framework-demo' ),
'default' => array(
'margin-top' => '1px',
'margin-right' => '2px',
'margin-bottom' => '3px',
'margin-left' => '4px'
)
),
array(
'id' => 'opt-spacing-expanded',
'type' => 'spacing',
// An array of CSS selectors to apply this font style to
'mode' => 'margin',
// absolute, padding, margin, defaults to padding
'all' => false,
// Have one field that applies to all
//'top' => false, // Disable the top
//'right' => false, // Disable the right
//'bottom' => false, // Disable the bottom
//'left' => false, // Disable the left
'units' => array( 'em', 'px', '%' ), // You can specify a unit value. Possible: px, em, %
'units_extended' => 'true', // Allow users to select any type of unit
//'display_units' => 'false', // Set to false to hide the units if the units are specified
'title' => __( 'Padding/Margin Option', 'redux-framework-demo' ),
'subtitle' => __( 'Allow your users to choose the spacing or margin they want.', 'redux-framework-demo' ),
'desc' => __( 'You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units.', 'redux-framework-demo' ),
'default' => array(
'margin-top' => '1px',
'margin-right' => '2px',
'margin-bottom' => '3px',
'margin-left' => '4px'
)
),
)
) );
*/
// -> START 媒体上传
Redux::setSection( $opt_name, array(
'title' => __( '媒体上传', 'redux-framework-demo' ),
'id' => 'media',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-picture'
) );
Redux::setSection( $opt_name, array(
'title' => __( '相册', 'redux-framework-demo' ),
'id' => 'media-gallery',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/gallery/" target="_blank">docs.reduxframework.com/core/fields/gallery/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-gallery',
'type' => 'gallery',
'title' => __( '新增/编辑 相册', 'redux-framework-demo' ),
'subtitle' => __( '使用WordPress自带的上传途径上传新的图片或选择已存在的图片来创建新相册', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '媒体文件', 'redux-framework-demo' ),
'id' => 'media-media',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/media/" target="_blank">docs.reduxframework.com/core/fields/media/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-media',
'type' => 'media',
'url' => true,
'title' => __( '媒体文件 (带URL)', 'redux-framework-demo' ),
'compiler' => 'true',
//'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
'desc' => __( '有input有URL,但禁止编辑input域', 'redux-framework-demo' ),
'subtitle' => __( '使用wordpress自带的上传途径上传文件', 'redux-framework-demo' ),
'default' => array( 'url' => 'http://ww4.sinaimg.cn/mw690/6b002b97gw1fb4pe1gb4xj202i01o744.jpg' ),
//'hint' => array(
// 'title' => 'Hint Title',
// 'content' => 'This is a <b>hint</b> for the media field with a Title.',
//)
),
array(
'id' => 'media-no-url',
'type' => 'media',
'title' => __( '媒体文件 (不带URL无预览)', 'redux-framework-demo' ),
'desc' => __( '无input域,无预览图', 'redux-framework-demo' ),
'subtitle' => __( '使用wordpress自带的上传途径上传文件', 'redux-framework-demo' ),
),
array(
'id' => 'media-no-preview',
'type' => 'media',
'preview' => false,
'title' => __( '媒体文件 (有input无URL无预览)', 'redux-framework-demo' ),
'desc' => __( '有input域,无URL无预览图 ', 'redux-framework-demo' ),
'subtitle' => __( '使用wordpress自带的上传途径上传文件', 'redux-framework-demo' ),
'hint' => array(
'title' => 'Test',
'content' => '这是一段<b>提示</b>,<br/><br/>可以使用html标签',
)
),
array(
'id' => 'opt-random-upload',
'type' => 'media',
'title' => __( '无input无URL有预览,全宽', 'redux-framework-demo' ),
'full_width' => true,
'mode' => false,
// Can be set to false to allow any media type, or can also be set to any mime type.
'desc' => __( '无input无URL', 'redux-framework-demo' ),
'subtitle' => __( '使用wordpress自带的上传途径上传文件', 'redux-framework-demo' ),
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '上传滑块', 'redux-framework-demo' ),
'id' => 'additional-slides',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/slides/" target="_blank">docs.reduxframework.com/core/fields/slides/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-slides',
'type' => 'slides',
'title' => __( '滑块设置', 'redux-framework-demo' ),
'subtitle' => __( '可以无限制插入或拖动滑块部件', 'redux-framework-demo' ),
'desc' => __( '此设置项会将所有部件设置值写入一个多维数组,供开发者使用foreach等循环调用输出', 'redux-framework-demo' ),
'placeholder' => array(
'title' => __( '这是滑块标题', 'redux-framework-demo' ),
'description' => __( '描述', 'redux-framework-demo' ),
'url' => __( '这里可以设置一个链接 e.g. http://www.inlojv.com', 'redux-framework-demo' ),
),
),
)
) );
// -> START 小部件设置项
Redux::setSection( $opt_name, array(
'title' => __( '小部件', 'redux-framework-demo' ),
'id' => 'presentation',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-screen'
) );
Redux::setSection( $opt_name, array(
'title' => __( '分割部件', 'redux-framework-demo' ),
'id' => 'presentation-divide',
'desc' => __( '像左侧菜单一样创建一条分割线 用来分隔各个项目', 'redux-framework-demo' ) . '<br />' . __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/divide/" target="_blank">docs.reduxframework.com/core/fields/divide/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-divide',
'type' => 'divide'
),
),
) );
Redux::setSection( $opt_name, array(
'title' => __( '信息部件', 'redux-framework-demo' ),
'id' => 'presentation-info',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/info/" target="_blank">docs.reduxframework.com/core/fields/info/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-info-field',
'type' => 'info',
'desc' => __( '典型信息部件', 'redux-framework-demo' )
),
array(
'id' => 'opt-notice-info1',
'type' => 'info',
'style' => 'info',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '带标题的加强型信息部件1', 'redux-framework-demo' )
),
array(
'id' => 'opt-info-warning',
'type' => 'info',
'style' => 'warning',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '带标题的加强型信息部件2', 'redux-framework-demo' )
),
array(
'id' => 'opt-info-success',
'type' => 'info',
'style' => 'success',
'icon' => 'el el-info-circle',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '带标题带图标的加强型信息部件1', 'redux-framework-demo' )
),
array(
'id' => 'opt-info-critical',
'type' => 'info',
'style' => 'critical',
'icon' => 'el el-info-circle',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '带标题带图标的加强型信息部件2', 'redux-framework-demo' )
),
array(
'id' => 'opt-info-custom',
'type' => 'info',
'style' => 'custom',
'color' => 'purple',
'icon' => 'el el-info-circle',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '带标题带图标的加强型信息部件3', 'redux-framework-demo' )
),
array(
'id' => 'opt-info-normal',
'type' => 'info',
'notice' => false,
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '面板式信息部件1', 'redux-framework-demo' )
),
array(
'id' => 'opt-notice-info',
'type' => 'info',
'notice' => false,
'style' => 'info',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '面板式信息部件2', 'redux-framework-demo' )
),
array(
'id' => 'opt-notice-warning',
'type' => 'info',
'notice' => false,
'style' => 'warning',
'icon' => 'el el-info-circle',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '面板式带图标信息部件1', 'redux-framework-demo' )
),
array(
'id' => 'opt-notice-success',
'type' => 'info',
'notice' => false,
'style' => 'success',
'icon' => 'el el-info-circle',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '面板式带图标信息部件2', 'redux-framework-demo' )
),
array(
'id' => 'opt-notice-critical',
'type' => 'info',
'notice' => false,
'style' => 'critical',
'icon' => 'el el-info-circle',
'title' => __( '标题', 'redux-framework-demo' ),
'desc' => __( '面板式带图标信息部件3', 'redux-framework-demo' )
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '组合部件', 'redux-framework-demo' ),
'id' => 'presentation-section',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/section/" target="_blank">docs.reduxframework.com/core/fields/section/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'section-start',
'type' => 'section',
'title' => __( '组合部件的例子', 'redux-framework-demo' ),
'subtitle' => __( '你可以创建独立的组合部件', 'redux-framework-demo' ),
'indent' => true, // Indent all options below until the next 'section' option is set.
),
array(
'id' => 'section-test',
'type' => 'text',
'title' => __( '标题', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
),
array(
'id' => 'section-test-media',
'type' => 'media',
'title' => __( '标题', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
),
array(
'id' => 'section-end',
'type' => 'section',
'indent' => false, // Indent all options below until the next 'section' option is set.
),
array(
'id' => 'section-info',
'type' => 'info',
'desc' => __( '下面可新增组合部件', 'redux-framework-demo' ),
),
),
) );
// -> START 分割
Redux::setSection( $opt_name, array(
'id' => 'presentation-divide-sample',
'type' => 'divide',
) );
// -> START 开关按钮
Redux::setSection( $opt_name, array(
'title' => __( '开关按钮', 'redux-framework-demo' ),
'id' => 'switch_buttonset',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-cogs'
) );
Redux::setSection( $opt_name, array(
'title' => __( '按钮', 'redux-framework-demo' ),
'id' => 'switch_buttonset-set',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/button-set/" target="_blank">docs.reduxframework.com/core/fields/button-set/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-button-set',
'type' => 'button_set',
'title' => __( '单选按钮设置', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value pairs for radio options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
'default' => '2'
),
array(
'id' => 'opt-button-set-multi',
'type' => 'button_set',
'title' => __( '复选按钮设置', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'multi' => true,
//Must provide key => value pairs for radio options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
'default' => array( '2', '3' )
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '开关', 'redux-framework-demo' ),
'id' => 'switch_buttonset-switch',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/switch/" target="_blank">docs.reduxframework.com/core/fields/switch/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'switch-on',
'type' => 'switch',
'title' => __( '开关-开', 'redux-framework-demo' ),
'subtitle' => __( '现在是默认打开状态', 'redux-framework-demo' ),
'default' => true,
),
array(
'id' => 'switch-off',
'type' => 'switch',
'title' => __( '开关-关', 'redux-framework-demo' ),
'subtitle' => __( '现在是默认关闭状态', 'redux-framework-demo' ),
//'options' => array('on', 'off'),
'default' => false,
),
array(
'id' => 'switch-parent',
'type' => 'switch',
'title' => __( '开关联动子项目-打开即显示子项目', 'redux-framework-demo' ),
'subtitle' => __( '默认关闭,隐藏子项目', 'redux-framework-demo' ),
'default' => 0,
'on' => 'Enabled',
'off' => 'Disabled',
),
array(
'id' => 'switch-child1',
'type' => 'switch',
'required' => array( 'switch-parent', '=', '1' ), // 设置折叠锚点id ,switch-parent 表示由id为switch-parent 的开关控制此项的折叠
'title' => __( '子项-1(再无子项)', 'redux-framework-demo' ),
'subtitle' => __( '注意与开关id锚点挂钩', 'redux-framework-demo' ),
'desc' => __( '描述', 'redux-framework-demo' ),
'default' => false,
),
array(
'id' => 'switch-child2',
'type' => 'switch',
'required' => array( 'switch-parent', '=', '1' ), // 设置折叠锚点id ,switch-parent 表示由id为switch-parent 的开关控制此项的折叠
'title' => __( '子项-2(还有子项)', 'redux-framework-demo' ),
'subtitle' => __( '注意与开关id锚点挂钩', 'redux-framework-demo' ),
'desc' => __( '描述', 'redux-framework-demo' ),
'default' => false,
),
array(
'id' => 'switch-child3',
'type' => 'switch',
'required' => array( 'switch-child2', '=', '1' ), // 设置折叠锚点id ,switch-child2 表示由id为switch-child2 的开关控制此项的折叠
'title' => __( '子项-2-1', 'redux-framework-demo' ),
'subtitle' => __( '注意与开关id锚点挂钩', 'redux-framework-demo' ),
'desc' => __( '描述', 'redux-framework-demo' ),
'default' => false,
),
)
) );
// -> START 下拉选择
Redux::setSection( $opt_name, array(
'title' => __( '下拉选择', 'redux-framework-demo' ),
'id' => 'select',
'icon' => 'el el-list-alt'
) );
Redux::setSection( $opt_name, array(
'title' => __( '下拉选择', 'redux-framework-demo' ),
'id' => 'select-select',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/select/" target="_blank">docs.reduxframework.com/core/fields/select/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-select',
'type' => 'select',
'title' => __( '典型下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value pairs for select options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3',
),
'default' => '2'
),
array(
'id' => 'opt-select-stylesheet',
'type' => 'select',
'title' => __( '自定义值下来选择', 'redux-framework-demo' ),
'subtitle' => __( '选择一个主题样式', 'redux-framework-demo' ),
'options' => array( 'default.css' => 'default.css', 'color1.css' => 'color1.css' ),
'default' => 'default.css',
),
array(
'id' => 'opt-select-optgroup',
'type' => 'select',
'title' => __( '选项组下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value pairs for select options
'options' => array(
'Group 1' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3',
),
'Group 2' => array(
'4' => 'Opt 4',
'5' => 'Opt 5',
'6' => 'Opt 6',
),
'7' => 'Opt 7',
'8' => 'Opt 8',
'9' => 'Opt 9',
),
'default' => '2'
),
array(
'id' => 'opt-multi-select',
'type' => 'select',
'multi' => true,
'title' => __( '多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value pairs for radio options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
//'required' => array( 'opt-select', 'equals', array( '1', '3' ) ),
'default' => array( '2', '3' )
),
array(
'id' => 'opt-select-image',
'type' => 'select_image',
'title' => __( '选择图片', 'redux-framework-demo' ),
'subtitle' => __( '选择之后将有图片预览,注意在 config.php 配置$sample_patterns数组', 'redux-framework-demo' ),
'options' => $sample_patterns,
// Alternatively
//'options' => Array(
// 'img_name' => 'img_path'
// )
'default' => 'http://ww4.sinaimg.cn/mw690/6b002b97gw1fb4pe1gb4xj202i01o744.jpg',
),
array(
'id' => 'opt-info',
'type' => 'info',
'desc' => __( '这是一个info部件,您可以轻松地从WordPress中添加各种数据', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-categories',
'type' => 'select',
'data' => 'categories',
'title' => __( '网站[ 分类 ]输出下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-categories-multi',
'type' => 'select',
'data' => 'categories',
'multi' => true,
'title' => __( '网站[ 分类 ]输出多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-pages',
'type' => 'select',
'data' => 'pages',
'title' => __( '网站[ 页面 ]输出下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-multi-select-pages',
'type' => 'select',
'data' => 'pages',
'multi' => true,
'title' => __( '网站[ 页面 ]输出多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-tags',
'type' => 'select',
'data' => 'tags',
'title' => __( '网站[ 标签 ]输出下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-multi-select-tags',
'type' => 'select',
'data' => 'tags',
'multi' => true,
'title' => __( '网站[ 标签 ]输出多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-menus',
'type' => 'select',
'data' => 'menus',
'title' => __( '网站[ 菜单 ]输出下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-multi-select-menus',
'type' => 'select',
'data' => 'menu',
'multi' => true,
'title' => __( '网站[ 菜单 ]输出多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-post-type',
'type' => 'select',
'data' => 'post_type',
'title' => __( '网站[ 文章类型 ]输出下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-multi-select-post-type',
'type' => 'select',
'data' => 'post_type',
'multi' => true,
'title' => __( '网站[ 文章类型 ]输出多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-multi-select-sortable',
'type' => 'select',
'data' => 'post_type',
'multi' => true,
'sortable' => true,
'title' => __( '网站[ 文章类型 ]输出多选下拉+拖动排序', 'redux-framework-demo' ),
'subtitle' => __( 'This field also has sortable enabled!', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-posts',
'type' => 'select',
'data' => 'post',
'title' => __( '网站[ 文章 ]输出下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-multi-select-posts',
'type' => 'select',
'data' => 'post',
'multi' => true,
'title' => __( '网站[ 文章 ]输出多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-users',
'type' => 'select',
'data' => 'users',
'title' => __( '网站[ 用户 ]下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-roles',
'type' => 'select',
'data' => 'roles',
'title' => __( '网站[ 用户身份 ]下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-capabilities',
'type' => 'select',
'data' => 'capabilities',
'multi' => true,
'title' => __( '网站[ 用户权限 ]多选下拉', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
),
array(
'id' => 'opt-select-elusive',
'type' => 'select',
'data' => 'elusive-icons',
'title' => __( '图标下拉选择', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( 'Here\'s a list of all the elusive icons by name and icon.', 'redux-framework-demo' ),
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '图片单选', 'redux-framework-demo' ),
'id' => 'select-image_select',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/image-select/" target="_blank">docs.reduxframework.com/core/fields/image-select/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-image-select-layout',
'type' => 'image_select',
'title' => __( '图片选择 (网站布局)', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '利用图片视图选择布局模式', 'redux-framework-demo' ),
//Must provide key => value(array:title|img) pairs for radio options
'options' => array(
'1' => array(
'alt' => '1 Column',
'img' => ReduxFramework::$_url . 'assets/img/1col.png'
),
'2' => array(
'alt' => '2 Column Left',
'img' => ReduxFramework::$_url . 'assets/img/2cl.png'
),
'3' => array(
'alt' => '2 Column Right',
'img' => ReduxFramework::$_url . 'assets/img/2cr.png'
),
'4' => array(
'alt' => '3 Column Middle',
'img' => ReduxFramework::$_url . 'assets/img/3cm.png'
),
'5' => array(
'alt' => '3 Column Left',
'img' => ReduxFramework::$_url . 'assets/img/3cl.png'
),
'6' => array(
'alt' => '3 Column Right',
'img' => ReduxFramework::$_url . 'assets/img/3cr.png'
)
),
'default' => '2'
),
array(
'id' => 'opt-patterns',
'type' => 'image_select',
'tiles' => true,
'title' => __( '图片选择 (纹理)', 'redux-framework-demo' ),
'subtitle' => __( '子标题', 'redux-framework-demo' ),
'default' => 0,
'options' => $sample_patterns
,
),
array(
'id' => 'opt-image-select',
'type' => 'image_select',
'title' => __( '图片选择 (对齐方式)', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
//Must provide key => value(array:title|img) pairs for radio options
'options' => array(
'1' => array( 'title' => 'Opt1', 'img' => 'images/align-none.png' ),
'2' => array( 'title' => 'Opt2', 'img' => 'images/align-left.png' ),
'3' => array( 'title' => 'Opt3', 'img' => 'images/align-center.png' ),
'4' => array( 'title' => 'Opt4', 'img' => 'images/align-right.png' )
),
'default' => '2'
),
/* array(
'id' => 'opt-presets',
'type' => 'image_select',
'presets' => true,
'full_width' => true,
'title' => __( 'Preset', 'redux-framework-demo' ),
'subtitle' => __( 'This allows you to set a json string or array to override multiple preferences in your theme.', 'redux-framework-demo' ),
'default' => 0,
'desc' => __( 'This allows you to set a json string or array to override multiple preferences in your theme.', 'redux-framework-demo' ),
'options' => array(
'1' => array(
'alt' => 'Preset 1',
'img' => ReduxFramework::$_url . '../'.$redux_folder_name.'/assets/img/preset1.png',
'presets' => array(
'switch-on' => 1,
'switch-off' => 1,
'switch-parent' => 1
)
),
'2' => array(
'alt' => 'Preset 2',
'img' => ReduxFramework::$_url . '../'.$redux_folder_name.'/assets/img/preset2.png',
'presets' => '{"opt-slider-label":"1", "opt-slider-text":"10"}'
),
),
), */
)
) );
Redux::setSection( $opt_name, array(
'title' => __( '图片下拉选择', 'redux-framework-demo' ),
'id' => 'select-select_image',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/select-image/" target="_blank">docs.reduxframework.com/core/fields/select-image/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-select_image',
'type' => 'select_image',
'presets' => true,
'title' => __( '下拉选择(有预览)', 'redux-framework-demo' ),
'default' => 0,
'options' => array(
'1' => array(
'alt' => 'Preset 1',
'img' => ReduxFramework::$_url . '../'.$redux_folder_name.'/assets/img/preset1.png',
),
'2' => array(
'alt' => 'Preset 2',
'img' => ReduxFramework::$_url . '../'.$redux_folder_name.'/assets/img/preset2.png',
),
),
),
)
) );
// -> START 滑块 / 微调器
Redux::setSection( $opt_name, array(
'title' => __( '滑块 / 微调器', 'redux-framework-demo' ),
'id' => 'slider_spinner',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-adjust-alt'
) );
Redux::setSection( $opt_name, array(
'title' => __( '滑块', 'redux-framework-demo' ),
'id' => 'slider_spinner-slider',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/slider/" target="_blank">docs.reduxframework.com/core/fields/slider/</a>',
'fields' => array(
array(
'id' => 'opt-slider-label',
'type' => 'slider',
'title' => __( '滑块类型 1 (典型)', 'redux-framework-demo' ),
'subtitle' => __( '左侧显示数值', 'redux-framework-demo' ),
'desc' => __( '滑块描述——最小: 1, 最大: 500, 步距: 1, 默认值: 250', 'redux-framework-demo' ),
'default' => 250,
'min' => 1,
'step' => 1,
'max' => 500,
'display_value' => 'label'
),
array(
'id' => 'opt-slider-text',
'type' => 'slider',
'title' => __( '滑块类型 2 (步距为5)', 'redux-framework-demo' ),
'subtitle' => __( '左侧显示数值 (可修改数值)', 'redux-framework-demo' ),
'desc' => __( '滑块描述——最小: 0, 最大: 300, 步距: 5, 默认值: 75', 'redux-framework-demo' ),
'default' => 75,
'min' => 0,
'step' => 5,
'max' => 300,
'display_value' => 'text'
),
array(
'id' => 'opt-slider-select',
'type' => 'slider',
'title' => __( '滑块类型 3 (两端控制)', 'redux-framework-demo' ),
'subtitle' => __( '左右端可设置数值', 'redux-framework-demo' ),
'desc' => __( '滑块描述——最小: 0, 最大: 500, 步距: 5, 左端默认值: 100, 右端默认值: 300', 'redux-framework-demo' ),
'default' => array(
1 => 100,
2 => 300,
),
'min' => 0,
'step' => 5,
'max' => '500',
'display_value' => 'select',
'handles' => 2,
),
array(
'id' => 'opt-slider-float',
'type' => 'slider',
'title' => __( '滑块类型 4 (小数类型)', 'redux-framework-demo' ),
'subtitle' => __( '显示为小数', 'redux-framework-demo' ),
'desc' => __( '滑块描述——最小: 0, 最大: 1, 步距: 0.1, 默认值: 0.5', 'redux-framework-demo' ),
'default' => .5,
'min' => 0,
'step' => .1,
'max' => 1,
'resolution' => 0.1,
'display_value' => 'text'
),
),
'subsection' => true,
) );
Redux::setSection( $opt_name, array(
'title' => __( '微调器', 'redux-framework-demo' ),
'id' => 'slider_spinner-spinner',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/spinner/" target="_blank">docs.reduxframework.com/core/fields/spinner/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-spinner',
'type' => 'spinner',
'title' => __( 'JQuery UI Spinner 示例 1', 'redux-framework-demo' ),
'desc' => __( 'JQuery UI spinner 说明——最小:20, 最大: 100, 步距:20, 默认值: 40', 'redux-framework-demo' ),
'default' => '40',
'min' => '20',
'step' => '20',
'max' => '100',
),
)
) );
// -> START 文字排版相关
/* Redux::setSection( $opt_name, array(
'title' => __( '文字排版相关', 'redux-framework-demo' ),
'id' => 'typography',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/typography/" target="_blank">docs.reduxframework.com/core/fields/typography/</a>',
'icon' => 'el el-font',
'fields' => array(
array(
'id' => 'opt-typography-body',
'type' => 'typography',
'title' => __( 'Body Font', 'redux-framework-demo' ),
'subtitle' => __( 'Specify the body font properties.', 'redux-framework-demo' ),
'google' => true,
'default' => array(
'color' => '#dd9933',
'font-size' => '30px',
'font-family' => 'Arial,Helvetica,sans-serif',
'font-weight' => 'Normal',
),
),
array(
'id' => 'opt-typography',
'type' => 'typography',
'title' => __( 'Typography h2.site-description', 'redux-framework-demo' ),
//'compiler' => true, // Use if you want to hook in your own CSS compiler
//'google' => false,
// Disable google fonts. Won't work if you haven't defined your google api key
'font-backup' => true,
// Select a backup non-google font in addition to a google font
//'font-style' => false, // Includes font-style and weight. Can use font-style or font-weight to declare
//'subsets' => false, // Only appears if google is true and subsets not set to false
//'font-size' => false,
//'line-height' => false,
//'word-spacing' => true, // Defaults to false
//'letter-spacing'=> true, // Defaults to false
//'color' => false,
//'preview' => false, // Disable the previewer
'all_styles' => true,
// Enable all Google Font style/weight variations to be added to the page
'output' => array( 'h2.site-description, .entry-title' ),
// An array of CSS selectors to apply this font style to dynamically
'compiler' => array( 'h2.site-description-compiler' ),
// An array of CSS selectors to apply this font style to dynamically
'units' => 'px',
// Defaults to px
'subtitle' => __( 'Typography option with each property can be called individually.', 'redux-framework-demo' ),
'default' => array(
'color' => '#333',
'font-style' => '700',
'font-family' => 'Abel',
'google' => true,
'font-size' => '33px',
'line-height' => '40px'
),
),
)
) );
*/
// -> START 额外的类型
/* Redux::setSection( $opt_name, array(
'title' => __( '额外的类型', 'redux-framework-demo' ),
'id' => 'additional',
'desc' => __( '', 'redux-framework-demo' ),
'icon' => 'el el-magic',
//'fields' => array(
// array(
// 'id' => 'opt-customizer-only-in-section',
// 'type' => 'select',
// 'title' => __( 'Customizer Only Option', 'redux-framework-demo' ),
// 'subtitle' => __( 'The subtitle is NOT visible in customizer', 'redux-framework-demo' ),
// 'desc' => __( 'The field desc is NOT visible in customizer.', 'redux-framework-demo' ),
// 'customizer_only' => true,
// //Must provide key => value pairs for select options
// 'options' => array(
// '1' => 'Opt 1',
// '2' => 'Opt 2',
// '3' => 'Opt 3'
// ),
// 'default' => '2'
// ),
//)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Date', 'redux-framework-demo' ),
'id' => 'additional-date',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/date/" target="_blank">docs.reduxframework.com/core/fields/date/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-datepicker',
'type' => 'date',
'title' => __( 'Date Option', 'redux-framework-demo' ),
'subtitle' => __( '本设置子标题', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' )
),
),
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Sorter', 'redux-framework-demo' ),
'id' => 'additional-sorter',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/sorter/" target="_blank">docs.reduxframework.com/core/fields/sorter/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-homepage-layout',
'type' => 'sorter',
'title' => 'Layout Manager Advanced',
'subtitle' => 'You can add multiple drop areas or columns.',
'compiler' => 'true',
'options' => array(
'enabled' => array(
'highlights' => 'Highlights',
'slider' => 'Slider',
'staticpage' => 'Static Page',
'services' => 'Services'
),
'disabled' => array(),
'backup' => array(),
),
'limits' => array(
'disabled' => 1,
'backup' => 2,
),
),
array(
'id' => 'opt-homepage-layout-2',
'type' => 'sorter',
'title' => 'Homepage Layout Manager',
'desc' => 'Organize how you want the layout to appear on the homepage',
'compiler' => 'true',
'options' => array(
'disabled' => array(
'highlights' => 'Highlights',
'slider' => 'Slider',
),
'enabled' => array(
'staticpage' => 'Static Page',
'services' => 'Services'
),
),
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Raw', 'redux-framework-demo' ),
'id' => 'additional-raw',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/raw/" target="_blank">docs.reduxframework.com/core/fields/raw/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-raw_info_4',
'type' => 'raw',
'title' => __( 'Standard Raw Field', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'Description', 'redux-framework-demo' ),
'content' => $sampleHTML,
),
array(
'id' => 'opt-raw_info_5',
'type' => 'raw',
'full_width' => false,
'title' => __( 'Raw Field <code>full_width</code> False', 'redux-framework-demo' ),
'subtitle' => __( 'Subtitle', 'redux-framework-demo' ),
'desc' => __( 'Description', 'redux-framework-demo' ),
'content' => $sampleHTML,
),
)
) );
*/
// -> START 高级功能
/*
Redux::setSection( $opt_name, array(
'title' => __( '高级功能', 'redux-framework-demo' ),
'icon' => 'el el-thumbs-up',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
) );
Redux::setSection( $opt_name, array(
'title' => __( 'Callback', 'redux-framework-demo' ),
'id' => 'additional-callback',
'desc' => __( '文档支持请参考: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/fields/callback/" target="_blank">docs.reduxframework.com/core/fields/callback/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-custom-callback',
'type' => 'callback',
'title' => __( 'Custom Field Callback', 'redux-framework-demo' ),
'subtitle' => __( 'This is a completely unique field type', 'redux-framework-demo' ),
'desc' => __( 'This is created with a callback function, so anything goes in this field. Make sure to define the function though.', 'redux-framework-demo' ),
'callback' => 'redux_my_custom_field'
),
)
) );
// -> START Validation
Redux::setSection( $opt_name, array(
'title' => __( 'Field Validation', 'redux-framework-demo' ),
'id' => 'validation',
'desc' => __( 'For full documentation on validation, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/the-basics/validation/" target="_blank">docs.reduxframework.com/core/the-basics/validation/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-text-email',
'type' => 'text',
'title' => __( 'Text Option - Email Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This is a little space under the 标题 in the Options table, additional info is good in here.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'email',
'msg' => 'custom error message',
'default' => 'test@test.com',
),
array(
'id' => 'opt-text-post-type',
'type' => 'text',
'title' => __( 'Text Option with Data Attributes', 'redux-framework-demo' ),
'subtitle' => __( 'You can also pass an options array if you want. Set the default to whatever you like.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'data' => 'post_type',
),
array(
'id' => 'opt-multi-text',
'type' => 'multi_text',
'title' => __( 'Multi Text Option - Color Validated', 'redux-framework-demo' ),
'validate' => 'color',
'subtitle' => __( 'If you enter an invalid color it will be removed. Try using the text "blue" as a color. ;)', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' )
),
array(
'id' => 'opt-text-url',
'type' => 'text',
'title' => __( 'Text Option - URL Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be a URL.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'url',
'default' => 'http://reduxframework.com',
),
array(
'id' => 'opt-text-numeric',
'type' => 'text',
'title' => __( 'Text Option - Numeric Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be numeric.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'numeric',
'default' => '0',
),
array(
'id' => 'opt-text-comma-numeric',
'type' => 'text',
'title' => __( 'Text Option - Comma Numeric Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be a comma separated string of numerical values.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'comma_numeric',
'default' => '0',
),
array(
'id' => 'opt-text-no-special-chars',
'type' => 'text',
'title' => __( 'Text Option - No Special Chars Validated', 'redux-framework-demo' ),
'subtitle' => __( 'This must be a alpha numeric only.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'no_special_chars',
'default' => '0'
),
array(
'id' => 'opt-text-str_replace',
'type' => 'text',
'title' => __( 'Text Option - Str Replace Validated', 'redux-framework-demo' ),
'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
'desc' => __( 'This field\'s default value was changed by a filter hook!', 'redux-framework-demo' ),
'validate' => 'str_replace',
'str' => array(
'search' => ' ',
'replacement' => 'thisisaspace'
),
'default' => 'This is the default.'
),
array(
'id' => 'opt-text-preg_replace',
'type' => 'text',
'title' => __( 'Text Option - Preg Replace Validated', 'redux-framework-demo' ),
'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'preg_replace',
'preg' => array(
'pattern' => '/[^a-zA-Z_ -]/s',
'replacement' => 'no numbers'
),
'default' => '0'
),
array(
'id' => 'opt-text-custom_validate',
'type' => 'text',
'title' => __( 'Text Option - Custom Callback Validated', 'redux-framework-demo' ),
'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
'desc' => __( 'Enter <code>1</code> and click <strong>Save Changes</strong> for an error message, or enter <code>2</code> and click <strong>Save Changes</strong> for a warning message.', 'redux-framework-demo' ),
'validate_callback' => 'redux_validate_callback_function',
'default' => '0'
),
//array(
// 'id' => 'opt-text-custom_validate-class',
// 'type' => 'text',
// 'title' => __( 'Text Option - Custom Callback Validated - Class', 'redux-framework-demo' ),
// 'subtitle' => __( 'You decide.', 'redux-framework-demo' ),
// 'desc' => __( '本设置项描述', 'redux-framework-demo' ),
// 'validate_callback' => array( 'Class_Name', 'validate_callback_function' ),
// // You can pass the current class
// // Or pass the class name and method
// //'validate_callback' => array(
// // 'Redux_Framework_sample_config',
// // 'validate_callback_function'
// //),
// 'default' => '0'
//),
array(
'id' => 'opt-textarea-no-html',
'type' => 'textarea',
'title' => __( 'Textarea Option - No HTML Validated', 'redux-framework-demo' ),
'subtitle' => __( 'All HTML will be stripped', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'no_html',
'default' => 'No HTML is allowed in here.'
),
array(
'id' => 'opt-textarea-html',
'type' => 'textarea',
'title' => __( 'Textarea Option - HTML Validated', 'redux-framework-demo' ),
'subtitle' => __( 'HTML Allowed (wp_kses)', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'html', //see http://codex.wordpress.org/Function_Reference/wp_kses_post
'default' => 'HTML is allowed in here.'
),
array(
'id' => 'opt-textarea-some-html',
'type' => 'textarea',
'title' => __( 'Textarea Option - HTML Validated Custom', 'redux-framework-demo' ),
'subtitle' => __( 'Custom HTML Allowed (wp_kses)', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'html_custom',
'default' => '<p>Some HTML is allowed in here.</p>',
'allowed_html' => array(
'a' => array(
'href' => array(),
'title' => array()
),
'br' => array(),
'em' => array(),
'strong' => array()
) //see http://codex.wordpress.org/Function_Reference/wp_kses
),
array(
'id' => 'opt-textarea-js',
'type' => 'textarea',
'title' => __( 'Textarea Option - JS Validated', 'redux-framework-demo' ),
'subtitle' => __( 'JS will be escaped', 'redux-framework-demo' ),
'desc' => __( '本设置项描述', 'redux-framework-demo' ),
'validate' => 'js'
),
)
) );
// -> START Required
Redux::setSection( $opt_name, array(
'title' => __( 'Field Required / Linking', 'redux-framework-demo' ),
'id' => 'required',
'desc' => __( 'For full documentation on validation, visit: ', 'redux-framework-demo' ) . '<a href="//docs.reduxframework.com/core/the-basics/required/" target="_blank">docs.reduxframework.com/core/the-basics/required/</a>',
'subsection' => true,
'fields' => array(
array(
'id' => 'opt-required-basic',
'type' => 'switch',
'title' => 'Basic Required Example',
'subtitle' => 'Click <code>On</code> to see the text field appear.',
'default' => false
),
array(
'id' => 'opt-required-basic-text',
'type' => 'text',
'title' => 'Basic Text Field',
'subtitle' => 'This text field is only show when the above switch is set to <code>On</code>, using the <code>required</code> argument.',
'required' => array( 'opt-required-basic', '=', true )
),
array(
'id' => 'opt-required-divide-1',
'type' => 'divide'
),
array(
'id' => 'opt-required-nested',
'type' => 'switch',
'title' => 'Nested Required Example',
'subtitle' => 'Click <code>On</code> to see another set of options appear.',
'default' => false
),
array(
'id' => 'opt-required-nested-buttonset',
'type' => 'button_set',
'title' => 'Multiple Nested Required Examples',
'subtitle' => 'Click any buton to show different fields based on their <code>required</code> statements.',
'options' => array(
'button-text' => 'Show Text Field',
'button-textarea' => 'Show Textarea Field',
'button-editor' => 'Show WP Editor',
'button-ace' => 'Show ACE Editor'
),
'required' => array( 'opt-required-nested', '=', true ),
'default' => 'button-text'
),
array(
'id' => 'opt-required-nested-text',
'type' => 'text',
'title' => 'Nested Text Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-text' )
),
array(
'id' => 'opt-required-nested-textarea',
'type' => 'textarea',
'title' => 'Nested Textarea Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-textarea' )
),
array(
'id' => 'opt-required-nested-editor',
'type' => 'editor',
'title' => 'Nested Editor Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-editor' )
),
array(
'id' => 'opt-required-nested-ace',
'type' => 'ace_editor',
'title' => 'Nested ACE Editor Field',
'required' => array( 'opt-required-nested-buttonset', '=', 'button-ace' )
),
array(
'id' => 'opt-required-divide-2',
'type' => 'divide'
),
array(
'id' => 'opt-required-select',
'type' => 'select',
'title' => 'Select Required Example',
'subtitle' => 'Select a different option to display its value. Required may be used to display multiple & reusable fields',
'options' => array(
'no-sidebar' => 'No Sidebars',
'left-sidebar' => 'Left Sidebar',
'right-sidebar' => 'Right Sidebar',
'both-sidebars' => 'Both Sidebars'
),
'default' => 'no-sidebar',
'select2' => array( 'allowClear' => false )
),
array(
'id' => 'opt-required-select-left-sidebar',
'type' => 'select',
'title' => 'Select Left Sidebar',
'data' => 'sidebars',
'default' => '',
'required' => array( 'opt-required-select', '=', array( 'left-sidebar', 'both-sidebars' ) )
),
array(
'id' => 'opt-required-select-right-sidebar',
'type' => 'select',
'title' => 'Select Right Sidebar',
'data' => 'sidebars',
'default' => '',
'required' => array( 'opt-required-select', '=', array( 'right-sidebar', 'both-sidebars' ) )
),
)
) );
Redux::setSection( $opt_name, array(
'title' => __( 'WPML Integration', 'redux-framework-demo' ),
'desc' => __( 'These fields can be fully translated by WPML (WordPress Multi-Language). This serves as an example for you to implement. For extra details look at our <a href="//docs.reduxframework.com/core/advanced/wpml-integration/" target="_blank">WPML Implementation</a> documentation.', 'redux-framework-demo' ),
'subsection' => true,
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id' => 'wpml-text',
'type' => 'textarea',
'title' => __( 'WPML Text', 'redux-framework-demo' ),
'desc' => __( 'This string can be translated via WPML.', 'redux-framework-demo' ),
),
array(
'id' => 'wpml-multicheck',
'type' => 'checkbox',
'title' => __( 'WPML Multi Checkbox', 'redux-framework-demo' ),
'desc' => __( 'You can literally translate the values via key.', 'redux-framework-demo' ),
//Must provide key => value pairs for multi checkbox options
'options' => array(
'1' => 'Option 1',
'2' => 'Option 2',
'3' => 'Option 3'
),
),
)
) );
*/
/* Redux::setSection( $opt_name, array(
'icon' => 'el el-list-alt',
'title' => __( 'Customizer Only', 'redux-framework-demo' ),
'desc' => __( '<p class="description">This Section should be visible only in Customizer</p>', 'redux-framework-demo' ),
'customizer_only' => true,
'fields' => array(
array(
'id' => 'opt-customizer-only',
'type' => 'select',
'title' => __( 'Customizer Only Option', 'redux-framework-demo' ),
'subtitle' => __( 'The subtitle is NOT visible in customizer', 'redux-framework-demo' ),
'desc' => __( 'The field desc is NOT visible in customizer.', 'redux-framework-demo' ),
'customizer_only' => true,
//Must provide key => value pairs for select options
'options' => array(
'1' => 'Opt 1',
'2' => 'Opt 2',
'3' => 'Opt 3'
),
'default' => '2'
),
)
) ); */
/* if ( file_exists( dirname( __FILE__ ) . '/../README.md' ) ) {
$section = array(
'icon' => 'el el-list-alt',
'title' => __( 'Documentation', 'redux-framework-demo' ),
'fields' => array(
array(
'id' => '17',
'type' => 'raw',
'markdown' => true,
'content_path' => dirname( __FILE__ ) . '/../README.md', // FULL PATH, not relative please
//'content' => 'Raw content here',
),
),
);
Redux::setSection( $opt_name, $section );
}
*/
/*
* <--- END SECTIONS
*/