Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
buildbench
/
components
/
theme
/
options
/
customizer
:
options-style.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if (!defined('ABSPATH')) die('Direct access forbidden.'); /** * customizer option: general */ $options =[ 'style_settings' => [ 'title' => esc_html__( 'Style settings', 'buildbench' ), 'options' => [ 'style_body_bg' => [ 'label' => esc_html__( 'Body background', 'buildbench' ), 'desc' => esc_html__( 'Site\'s main background color.', 'buildbench' ), 'type' => 'color-picker', ], 'style_primary' => [ 'label' => esc_html__( 'Primary color', 'buildbench' ), 'desc' => esc_html__( 'Site\'s main color.', 'buildbench' ), 'type' => 'color-picker', ], 'secondary_color' => [ 'label' => esc_html__( 'Secondary color', 'buildbench' ), 'desc' => esc_html__( 'Secondary color.', 'buildbench' ), 'type' => 'color-picker', ], 'title_color' => [ 'label' => esc_html__( 'Title color', 'buildbench' ), 'desc' => esc_html__( 'Blog title color.', 'buildbench' ), 'type' => 'color-picker', ], 'body_font' => array( 'type' => 'typography-v2', 'label' => esc_html__('Body Font', 'buildbench'), 'desc' => esc_html__('Choose the typography for the title', 'buildbench'), 'value' => array( 'family' => 'Open Sans', 'size' => '16', 'font-weight' => '400', ), 'components' => array( 'family' => true, 'size' => true, 'line-height' => false, 'letter-spacing' => false, 'color' => false, 'font-weight' => true, ), ), 'heading_font_one' => [ 'type' => 'typography-v2', 'value' => [ 'family' => 'Montserrat', 'size' => '', 'font-weight' => '700', ], 'components' => [ 'family' => true, 'size' => true, 'line-height' => false, 'letter-spacing' => false, 'color' => false, 'font-weight' => true, ], 'label' => esc_html__( 'Heading H1 and H2 Fonts', 'buildbench' ), 'desc' => esc_html__( 'This is for heading google fonts', 'buildbench' ), ], 'heading_font_two' => [ 'type' => 'typography-v2', 'value' => [ 'family' => 'Montserrat', 'size' => '', 'font-weight' => '700', ], 'components' => [ 'family' => true, 'size' => true, 'line-height' => false, 'letter-spacing' => false, 'color' => false, 'font-weight' => true, ], 'label' => esc_html__( 'Heading H3 Fonts', 'buildbench' ), 'desc' => esc_html__( 'This is for heading google fonts', 'buildbench' ), ], 'heading_font_three' => [ 'type' => 'typography-v2', 'value' => [ 'family' => 'Montserrat', 'size' => '', 'font-weight' => '700', ], 'components' => [ 'family' => true, 'size' => true, 'line-height' => false, 'letter-spacing' => false, 'color' => false, 'font-weight' => true, ], 'label' => esc_html__( 'Heading H4 Fonts', 'buildbench' ), 'desc' => esc_html__( 'This is for heading google fonts', 'buildbench' ), ], ], ], ];