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;
