?? GreyFile — Mystic File Browser

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



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

?? Viewing: map.php

<?php

$footer_meta_box = edgtf_quadric_create_meta_box(
    array(
        'scope' => array('page', 'portfolio-item', 'post'),
        'title' => esc_html__( 'Footer', 'quadric' ),
        'name' => 'footer-meta'
    )
);

    edgtf_quadric_create_meta_box_field(
        array(
            'name' => 'edgtf_disable_footer_meta',
            'type' => 'yesno',
            'default_value' => 'no',
            'label' => esc_html__( 'Disable Footer for this Page', 'quadric' ),
            'description' => esc_html__( 'Enabling this option will hide footer on this page', 'quadric' ),
            'parent' => $footer_meta_box,
        )
    );


??

??