// Gallery Configuration Page Container::make( 'theme_options', 'Gallery' ) ->set_page_parent( $basic_options_container ) ->add_fields( array( Field::make( 'html', 'gallery_intro', 'Photo Gallery Settings' ) ->set_html( '
Upload up to 6 images for your gallery. Use [bowlrx_gallery] shortcode to display.
' ), Field::make( 'image', 'bowlrx_gallery_image_1', 'Image 1' ), Field::make( 'image', 'bowlrx_gallery_image_2', 'Image 2' ), Field::make( 'image', 'bowlrx_gallery_image_3', 'Image 3' ), Field::make( 'image', 'bowlrx_gallery_image_4', 'Image 4' ), Field::make( 'image', 'bowlrx_gallery_image_5', 'Image 5' ), Field::make( 'image', 'bowlrx_gallery_image_6', 'Image 6' ), )) ;