// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
gallery-images-ape
/
libs
/
metabox
[ PARENT ]
EDIT :: resources.php
<?php /* * Ape Gallery http://wpape.net * Version: 1.2.4 - 61253 * Author: Wp Ape (c) * Author URI: http://wpape.net * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Date: Thu, 08 Dec 2016 16:31:35 GMT */ $gallery_images_metabox = new_cmb2_box( array( 'id' => WPAPE_GALLERY_NAMESPACE . 'images_metabox', 'title' => __( 'Gallery Resources', 'wpape_gallery' ), 'object_types' => array( WPAPE_GALLERY_POST ), 'context' => 'side', 'priority' => 'high', 'show_names' => false, )); $gallery_images_metabox->add_field(array( 'name' => __( 'Manage Images', 'wpape_gallery' ), 'id' => WPAPE_GALLERY_NAMESPACE . 'galleryImages', 'type' => 'wpape_gallery_manage', 'sanitization_cb' => 'wpape_gallery_manage_field_sanitise' ));
SAVE
CANCEL