Question: Is it possible to update the meta box value of a WordPress post using some function like we do with update_post_meta()?
Explanation:
Here is the format of the data saved in database for the metabox I want to update with a function/hook.
Now, if I want to update just a single entry from that data, let say 'start_year' then how can I do that using a function/hook?
If I choose to go with update_post_meta(65, '_mycpt_date', ''2010), it will obviously replace everything with just '2010'.