I using post meta like..
$meta = get_post_meta(99,'_mymeta',true);
$value = $meta['somekey'];
echo $value;
But how to update $meta['somekey']
to some another value ?
How to use update_post_meta to update sub meta key ?(Idk, How ppl call)
update_post_meta(99, '_mymeta["somekey"]', 'myAnotherValue');
?????
To update post meta that are an array: you have to fetch the original values, change the value you need and update it again. For example