?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes/general/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/admin/meta-boxes

?? Viewing: map.php

<?php

$general_meta_box = edgtf_quadric_create_meta_box(
    array(
        'scope' => array('page', 'portfolio-item', 'post'),
        'title' => esc_html__( 'General', 'quadric' ),
        'name' => 'general-meta'
    )
);


    edgtf_quadric_create_meta_box_field(
        array(
            'name' => 'edgtf_page_background_color_meta',
            'type' => 'color',
            'default_value' => '',
            'label' => esc_html__( 'Page Background Color', 'quadric' ),
            'description' => esc_html__( 'Choose background color for page content', 'quadric' ),
            'parent' => $general_meta_box
        )
    );

    edgtf_quadric_create_meta_box_field(
        array(
            'name' => 'edgtf_page_slider_meta',
            'type' => 'text',
            'default_value' => '',
            'label' => esc_html__( 'Slider Shortcode', 'quadric' ),
            'description' => esc_html__( 'Paste your slider shortcode here', 'quadric' ),
            'parent' => $general_meta_box
        )
    );

    edgtf_quadric_create_meta_box_field(
        array(
            'name'        => 'edgtf_page_comments_meta',
            'type'        => 'selectblank',
            'label' => esc_html__( 'Show Comments', 'quadric' ),
            'description' => esc_html__( 'Enabling this option will show comments on your page', 'quadric' ),
            'parent'      => $general_meta_box,
            'options'     => array(
                'yes' => esc_html__( 'Yes', 'quadric' ),
                'no' => esc_html__( 'No', 'quadric' ),
            )
        )
    );


??

??