问题描述

我正在使用高级自定义字段插件的帖子。我想知道自定义字段的存储位置。我检查了 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 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。