I use ACF, created a group of fields, display all the data of arbitrary fields in a post.
var_dump(get_post_meta(88)) gives the following array:
array(22) { ["_edit_last"]=> array(1) { [0]=> string(1) "1" } ["_edit_lock"]=> array(1) { [0]=> string(12) "1519921388:1" } ["protective_packing"]=> array(1) { [0]=> string(580) "text 1" } ["_protective_packing"]=> array(1) { [0]=> string(19) "field_5a97345fa9e31" } ["free_storage"]=> array(1) { [0]=> string(580) "text 2" } ["_free_storage"]=> array(1) { [0]=> string(19) "field_5a973b9d5dabb" } In this output, you can get the name of the field ["protective_packing"], for example, but how to get the label of the field, which is called "Protective packaging"?
