Leave a Reply

2 comments

  1. Lists of items are already implemented in WP core. They’re called custom menus. They are stored as a custom post type + taxonomy.

    UPDATE:

    I had assumed that your list items would be other posts, but I’m getting the impression that you just need them to be strings. In this case, menus would be overkill and you should store the list items as individual custom fields.

  2. The grouping would be the best fit for the taxonomies. The drag and drop can be achieved pretty easily. I’ve got a set of functions (including JS and CSS) you can see it all here http://pastie.org/2125914

    As for the list content, postmeta would be the way to do it, but I haven’t seen an “add on the fly” solution yet. I’d be interested in that myself.