User Meta stuff
You have a few PHP issues preventing output- it appears your foreach is commented out with //. you do foreach( $our_children as $children ), but then you use $our_children instead of $children inside the foreach. $children->Age is for accessing an object’s property, but what you have here is an array, so it should be $children[‘Age’] … Read more