Where are custom field values stored in the database
From the codex for custom fields: The PostMeta information is stored in a new table, $wpdb->postmeta. This table has four fields: ‘meta_id’ – A unique id for each entry. ‘post_id’ – The ID of the post for this metadata. ‘meta_key’ – The name of the ‘key’. ‘meta_value’ – The value associated with the key. This … Read more