01/23/2015 at 9:04 am
#316816
Keymaster
@ Jason
You should be able to use one of the following snippets.
Use this one if you entered each child as a new row in the custom fields:
getMetaBlock( array( ‘key’ => ‘Children’ ) ); ?>
Use this one if you entered all children within a single custom field row.
getMetaBlock( array( ‘key’ => ‘Children’, ‘single’ => TRUE ) ); ?>
I believe that should do it. Let me know.