問題描述

我正在使用高階自定義欄位外掛的帖子。我想知道自定義欄位的儲存位置。我檢查了 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 輔助翻譯的英文資料結果。如果您對結果不滿意,可以加入我們改善翻譯效果:薇曉朵技術論壇。