I think WordPress have this capability, because I've seen this before, but I'm not being able to find it. I would like to know how to create my own set of custom "things" in a WordPress site. I'll explain:
I'm working on a WordPress website and I would like to be able to create a new Admin menu named "Files" where the user could just upload PDF files, just like if he was creating a new Post, with that same interface, and this uploaded files would be listed to download on a page of the Website, just like as if they were a list of "Last Posts". This new menu item would have to be placed between "Posts" and "Pages".
I've been looking to study for the Taxonomy WordPress concept but it does not seem to be what I'm looking for.
How can I create a custom type of "things" menu in WordPress Admin?
WP_Query(codex.wordpress.org/Class_Reference/WP_Query#Type_Parameters) and custom loop that usesget_post_metato get the file url from the custom upload field you set up for that post type. - Ennui