-
Notifications
You must be signed in to change notification settings - Fork 49
Add Repeatable Meta Fields #13
Comments
+1 |
+2 |
+3 |
+4 |
So here's a thought I have about how this could be implemented: Introducing a new type $meta->add_meta_box( array(
'id' => 'staff_details',
'fields' => array(
'name' => array( 'type' => 'text' ),
'repeat' => array(
'type' => 'repeater' ,
'subfields' => array(
'profile_image' => array(
'type' => 'media'
)
)
)
)
) The repeater field will have a The problem with this is the many level of nested array could be confusing and prone to errors. It is also worth thinking about whether we should only allow 1 level of |
thanks, it is really helpful |
I'll be needing something like this shortly. I can try and put something together over the next two weeks. I like @tnguyen14 's thoughts. Are there more opinions on how to implement this? |
Maybe like this for individual repeating field(s)
And like this for repeatable box(es)
|
+5 |
Is this feature still on the horizon? |
I do have to ask if this feature will be added anytime soon, that would be the bomb. |
I have a working prototype that I've used in several production sites. It only handles single level repeating groups and the ui needs to be refined. I'm going to get in touch with @mboynes. |
@sixlive Care to share? |
Is this project still active? Last update to it was back in July. |
+1 |
Would love the ability to have a repeatable meta box
The text was updated successfully, but these errors were encountered: