Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I saved a group of data in post meta, now I need to get the meta and use them as other items. My code not working, please help me correct it, thanks!

$boxes = Array( 'height', 'width' );

foreach ( $boxes as $data ){
$project = get_post_meta($post->ID, $data, true);
}

$item_a = $project->height;
$item_b = $project->width;
share|improve this question

1 Answer

up vote 2 down vote accepted
foreach ($boxes as $data) {
  $project[$data] = get_post_meta($post->ID, $data, true);
}


$item_a = $project['height'];
$item_b = $project['width'];
share|improve this answer
Thanks, it works! – Jenny May 27 '11 at 9:28
good - don't forget to accept the answer so others can see it's finished. – anu May 27 '11 at 9:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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