voceconnect / voce-post-meta

Easily create WordPress post meta groups and fields
5 stars 3 forks source link

Groupable fields #13

Open banderon opened 10 years ago

banderon commented 10 years ago

We need a way to allow specifying grouped fields. With #12 this would allow duplication of groups of fields together. Approaches are welcome.

One suggestion is to add a new layer between Voce_Meta_Group and Voce_Meta_Field to act as a wrapper for multiple fields, a Voce_Meta_Subgroup (better names are welcome), to which fields could be added. This would ensure that grouped fields are declared/rendered together.

If present, the subgroup could utilize its own custom $display_callback (customized to account for its child fields) for rendering all of its child fields together, rather than calling the fields' own render functions, allowing for an easier job of more complex custom styling of fields.

banderon commented 10 years ago

An easier approach might be to create a "group" field, and expand on that.