My experience with Meta Box has not ben a good one. Using your documentation and sample code I have yet to succeed in getting any values from any field.
I created a meta box named "Person"
I created a group containing three fields. The ID of the group is: "person_name"
Field 1 is "f_name"
Field 2 is "m_name"
Field 3 is "l_name"
Your instructions say this code should work to get the values:
$group_value = rwmb_meta( 'person_name' );
$value = isset( $group_value['f_name'] ) ? $group_value['f_name'] : '';
echo $value;
Well, it doesn't. Using the code on the single.php template file displays nothing.
The fields show up on the add new post page, but while the name entered is indeed saved when the post is saved or updated, nothing appears on the front end.
So, what is the problem?