I have a custom fields that is actually an array.
I would like to get one single field value from this array.
When I do: $meta = get_post_meta( get_the_ID(), 'my_fields_array'); and then var_dump($meta); // debugging I can see the array
How can I get one single value from this array?
I think I've found a solution: the issue is that the custom fields values I need are actually serialized into a string. So if I unserialize them I'm able to get what I need:
It works