If you could send over the custom code, that’d be great.
I used
<?php
$swfentries = get_post_meta( get_the_ID(), '_cmbdigitalswf_digitalswf', true );
foreach ( (array) $swfentries as $key => $swfentry ) {
$swftitle = $swfdescription = $swfwidth = $swfheight = $swf = '';
if ( isset( $swfentry['swftitle'] ) )
$swftitle = esc_html( $swfentry['swftitle'] );
if ( isset( $swfentry['swfdescription'] ) )
$swfdescription = esc_html( $swfentry['swfdescription'] );
if ( isset( $swfentry['swfwidth'] ) )
$swfwidth = esc_html( $swfentry['swfwidth'] );
if ( isset( $swfentry['swfheight'] ) )
$swfheight = esc_html( $swfentry['swfheight'] );
if ( isset( $swfentry['swf'] ) )
$swf = esc_html( $swfentry['swf']);
if ($key == 0) {
?>
// Do stuff
<?php
}
}
?>
Which worked a treat.