*Update* This function has been deprecated since v3.3.4, please use have_rows() instead.
1
2
3
4 <!--?php $groupId = 102; //ID of field group. Get this from the Edit Field Group page url (post=#) if (class_exists('Acf')) { $fields = new Acf(); if (method_exists( $fields, 'get_acf_fields') ) { foreach ($specs -> get_acf_fields($groupId) as $field) { $value = get_field($field['name']); ?-->
<!--?php if ($value) { ?-->
<img src="<?php echo $value ?>" alt="" />
<!--?php } } } } ?-->