'title', // unique field name 'type' => 'text', // registered field type 'label' => __( 'Title', 'blogita' ), // label to display 'default' => 'title', // default value upon selection ), ); $args = array( 'label' => 'Image Gallery', 'post_type' => array( 'post' ), 'position' => 'normal', 'priority' => 'high', 'filetype' => array('image'), 'note' => 'Attach Images', 'button_text' => __( 'Attach Images', 'blogita' ), 'modal_text' => __( 'Attach', 'blogita' ), 'router' => 'browse', 'post_parent' => false, 'fields' => $fields, ); $attachments->register( 'blogita_gallery', $args ); } add_action( 'attachments_register', 'blogita_attachments' );