Eco repeatable field with image in Wordpress -
im trying echo repeatable feilds in wordpress have images in repeatable field. want echo images in repeatable feild template. fields in custom meta box in admin panel. how can output/echo these.
this came with:
<?php $custom_repeatable = unserialize($post_meta_data['custom_repeatable'] [0]); ?> <?php echo '<ul class="custom_repeatable">'; foreach ($custom_repeatable $string) { echo '<li>'.$string.'</li>'; } </ul>'; ?>
Comments
Post a Comment