Get value of element in Multi-Dimensional Array
- by George
Here is my foreach loop to get at the values from a multi-dimensional array
$_coloredvariables = get_post_meta( $post->ID, '_coloredvariables', true );
foreach ($_coloredvariables as $key => $value) {
var_dump($value);
}
Which outputs this:
array
'label' => string 'Color' (length=5)
'size' => string 'small' (length=5)
…