Create a custom post type and its metaboxes
In WordPress everything is a post_type and anything you would like to attach with this post_type is possible by metaboxes. Posts are stored in the wp_post table and its meta information is stored in wp_postmeta table. This is a very basic structure which WordPress follows and every new collection is build around it. posts and …