問題描述
我正在使用高級自定義字段插件的帖子。我想知道自定義字段的存儲位置。我檢查了 wp_posts 表。但是,我找不到具有自定義字段的帖子。我想知道他們在哪個表中存儲在數據庫中。
最佳解決方案
來自 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.
這當然是假設 ACF 使用默認的 WordPress 結構而不是自定義數據庫。
參考文獻
注:本文內容整合自 Google/Baidu/Bing 輔助翻譯的英文資料結果。如果您對結果不滿意,可以加入我們改善翻譯效果:薇曉朵技術論壇。