WordPress
add_action('save_post',function($pid){
add_post_meta($pid,'country','India');
});
on saving post it is creating 3 meta keys/value with country – India,,
i want ti to right now one so that later can add multiple entry for this key,,
Create a Array:
I hope help you.