How to create a list of items with fields in WordPress?

I’m new to WordPress and hoping some of you experts can help me figure out the best way to attack what seems like such a simple problem. I need to have two lists of items that the user can add to, delete and update that will show up on the home page of the site. Both lists will be variable in length. They will live on a static home page if that matters. The first list contains items that need to have two fields and the second list contains items that need to have three fields. Then I need to be able to loop through them to display them with CSS styling. If I can somehow get an array of these items, I can handle that part. I’ve read and read and read stuff, and the more I read, the more confused I’m getting on how best to do this. Custom post types? Taxonomies? Custom Fields? Some combination of those? If I was building this from scratch, this would be such a simple thing, but I can’t figure out the best way to do this with WordPress? Can anyone give me some guidance?

Related posts

Leave a Reply

2 comments

    • Custom Post Type is content item;
    • Custom Fields are arbitrary (as opposed to standard and typical like title or content) entries of information, connected to post;
    • Taxonomy is structure applied to content.

    So the one of the possible ways to approach your setup would be:

    • list item = custom post type;
    • data that you need to be stored for list item = custom fields;
    • which of the lists item belongs to = taxonomy (or also custom fields since you don’t have many lists).