How to construct multiple meta boxes
You can create as many metaboxes as you want. Use a function to create them then hook into init. The first line should be $meta_boxes = array(); then start each new metabox with $meta_boxes[] = array( add_action( ‘init’, ‘prefix_create_metaboxes’ ); function prefix_create_metaboxes() { $meta_boxes = array(); $meta_boxes[] = array( ‘id’ => ‘venue_location’, ‘title’ => ‘Venue/Location’, … Read more