Вы можете попробовать следующее
function change_my_meta_value($value, $post_id, $meta_key, $single) {
$value = your_function_to_change_value(); // Change the value and store in database
return $value; // return the new value.
}
add_filters( "get_METANAME_metadata", 'change_my_meta_value', 10, 4 );
Вы должны изменить METANAME на свое фактическое имя мета.