After exporting my layout in order to move it to a static file I have lost the ID field associated with the fields.
I used to be able to query it by:
function render_field( $field ) {
$field_id = $field['ID'];
}
Now however when I do this it just returns 0
Can this be solved?
Solved this by using keys. Thanks!