Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good morning

Advanced Custom Fields – Using field group ID

This post was last updated: Nov 7, 2022
SnippetsWordPress

About a 1 minute read

"This is the real secret of life — to be completely engaged with what you are doing in the here and now. And instead of calling it work, realize it is play."

Alan Watts

*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 -&gt; get_acf_fields($groupId) as $field) { $value = get_field($field['name']); ?-->
            <!--?php if ($value) { ?-->
                <img src="&lt;?php echo $value ?&gt;" alt="" />
            <!--?php } } } } ?-->