?? GreyFile — Mystic File Browser

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



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

?? Viewing: map.php

<?php

/*** Gallery Post Format ***/

$gallery_post_format_meta_box = edgtf_quadric_create_meta_box(
	array(
		'scope' =>	array('post'),
		'title' => esc_html__( 'Gallery Post Format', 'quadric' ),
		'name' 	=> 'post-format-gallery-meta'
	)
);

edgtf_quadric_add_multiple_images_field(
	array(
		'name'        => 'edgtf_post_gallery_images_meta',
		'label' => esc_html__( 'Gallery Images', 'quadric' ),
		'description' => esc_html__( 'Choose your gallery images', 'quadric' ),
		'parent'      => $gallery_post_format_meta_box,
	)
);


??

??