Carbon_Fields\Datastore\Meta_Datastore::save PHP Method

save() public method

Save the field value(s) into the database.
public save ( Field $field )
$field Carbon_Fields\Field\Field The field to save.
    public function save(Field $field)
    {
        if (!update_metadata($this->get_meta_type(), $this->get_id(), $this->get_field_name($field), $field->get_value())) {
            add_metadata($this->get_meta_type(), $this->get_id(), $this->get_field_name($field), $field->get_value(), true);
        }
    }