Current File : /home/tekstore/public_html/wp-content/themes/cerato/inc/customize/options/general.php
<?php
/**
 * Customize for Site
 */
return [
    [
        'name' => 'zoo_general',
        'type' => 'section',
        'label' => esc_html__('General', 'cerato'),
        'priority'=>0
    ],
    [
        'name' => 'zoo_site_layout',
        'type' => 'select',
        'section' => 'zoo_general',
        'title' => esc_html__('Site Layout', 'cerato'),
        'description' => esc_html__('Config Layout for site', 'cerato'),
        'default' => 'normal',
        'choices' => [
            'normal' => esc_html__('Normal', 'cerato'),
            'boxed' => esc_html__('Boxed', 'cerato'),
            'full-width' => esc_html__('Full Width', 'cerato'),
        ]
    ],[
        'name' => 'zoo_site_max_width',
        'type' => 'number',
        'section' => 'zoo_general',
        'title' => esc_html__('Site Max Width', 'cerato'),
        'description' => esc_html__('Max width content of site. Leave it blank or 0, size max width will full width.', 'cerato'),
        'default' => '1400',
    ],[
        'name' => 'zoo_disable_breadcrumbs',
        'type' => 'checkbox',
        'section' => 'zoo_general',
        'title' => esc_html__('Disable Breadcrumbs', 'cerato'),
        'default' => 0,
        'checkbox_label' => esc_html__('Breadcrumbs will remove if checked.', 'cerato'),
    ],[
        'name' => 'zoo_disable_emojis',
        'type' => 'checkbox',
        'section' => 'zoo_general',
        'title' => esc_html__('Disable Emojis', 'cerato'),
        'default' => 1,
        'checkbox_label' => esc_html__('Emojis will remove if checked.', 'cerato'),
    ],[
        'name' => 'zoo_enable_lazy_image',
        'type' => 'checkbox',
        'section' => 'zoo_general',
        'title' => esc_html__('Enable Lazy Load Images', 'cerato'),
        'default' => 1,
        'checkbox_label' => esc_html__('Enable Lazy Load Images if checked.', 'cerato'),
    ],[
        'name' => 'zoo_enable_site_meta',
        'type' => 'checkbox',
        'section' => 'zoo_general',
        'title' => esc_html__('Enable Site Meta', 'cerato'),
        'default' => 0,
        'checkbox_label' => esc_html__('Show post thumbnail, title, description when share.', 'cerato'),
    ],[
        'name' => 'zoo_enable_back_top_top',
        'type' => 'checkbox',
        'section' => 'zoo_general',
        'title' => esc_html__('Enable Back to Top', 'cerato'),
        'default' => 1,
        'checkbox_label' => esc_html__('Show button back to top.', 'cerato'),
    ],
];