I am trying to get value of each clone (adding by +) field value and want to repeat video embed code.

First I am using this wordpress meta box plugin. http://www.deluxeblogtips.com/2010/04/how-to-create-meta-box-wordpress-post.html

I have a CPT where I want to use one code that will display as per the number of fields. There is a text meta box on CPT where user can add more by clicking on + button means clone. So for each field user will enter different value of image ID. So I want to repeat my code as per the number of field.

So if user adds 3 field it will repeat the code 3 times. which have something this structure.

<div>
    <a href=""><img src="first-field-value" /></a>
</div>

So I want to repeat this structure as per how many field user created and entered the value for that.

I am really sorry if I unable to describe properly. But please let me know if you want to know something more than this.

link|improve this question

41% accept rate
feedback

1 Answer

The Wp Alchemy class at http://farinspace.com/wpalchemy-metabox/ allows for repeating fields.

If you are rolling your own, you need to make sure that the form fields that represent your data entry are named with a trailing '[]', eg; myfieldname[]. This ensures that php treats the values for each cloned item as an array.

link|improve this answer
Alright! its fine to get nice script but having trouble to get radio, select and check box value. can you please help me for that? – pixelngrain Feb 23 at 20:36
Are you using Wp Alchemy or making your own metabox functions? – Dale Sattler Feb 24 at 0:42
Im using now Alchemy.. – pixelngrain Feb 24 at 4:24
Please help me its bit urgent... – pixelngrain Feb 24 at 16:34
Are the values getting saved? You can check this by looking in the post_meta table within your wordpress database. Or, are you able to save the values, but not read them? If you are storing cloned form fields you have to iterate over the array that contains their combined values. – Dale Sattler Feb 25 at 1:07
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.