Hi There!
I’m working on an existing WordPress website. The site uses custom fields and one field is populated with an array.
The custom field is called “items” and I need the value of the “description” key.
Custom field name: items
Array key I need the value of: description
Array: `a:33:{
s:4:”name”;
s:8:”janedoe”;
s:4:”language”;
s:18:”English, Dutch”;
s:12:”hobbies”;
s:0:”";
s:7:”work”;
s:0:”";
s:12:”description”;
s:48:”Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam, soluta!”;
}`
Is there an easy way to do this?
Best Roy