データベースに保存されているカスタムフィールド値はどこにありますか
-
-
こんにちは@ ChetanaKestikar-ACFは実際にはWordPressの一部ではないため、プラグインの内部動作に関する多くの知識がなければ、データをどこに保存するかを言うのは困難です.そのため、あなたの質問は公式のACFサポートチャネルで対処するのが最適です.Hello @ChetanaKestikar - since ACF is not actually a part of WordPress, it's difficult to say where it stores data without a great deal of knowledge regarding the inner workings of the plugin. For that reason, your question would be best addressed in the official ACF support channels.
- 0
- 2017-03-25
- bosco
-
1 回答
- 投票
-
- 2013-06-27
カスタムフィールドのコーデックスから:
PostMeta情報は、新しいテーブル$ wpdb->postmetaに保存されます.このテーブルには4つのフィールドがあります:
'meta_id'-各エントリの一意のID.
'post_id'-このメタデータの投稿のID.
'meta_key'-'キー 'の名前.
'meta_value'-キーに関連付けられた値.もちろん、これはACFがカスタムデータベースではなくデフォルトのWordPress構造を使用していることを前提としています.
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 of course assumings that ACF uses the default WordPress stucture and not a custom database.
-
では、ACFはデフォルトのWordPress構造を使用していることがわかりますか?So it turns out that ACF uses the default WordPress structure?
- 1
- 2015-05-15
- Mike Lyons
-
@MikeLyonsあなたは正しいです.@MikeLyons You are correct.
- 2
- 2015-08-13
- iambriansreed
-
しかし、テーブルの名前はどれですか?But which is the name of the table?
- 0
- 2015-11-04
- Revious
-
@Reviousこの図から、 `wp_postmeta`のようになりますhttps://codex.wordpress.org/Database_Description#Table:_wp_postmeta@Revious From this diagram looks like `wp_postmeta` https://codex.wordpress.org/Database_Description#Table:_wp_postmeta
- 1
- 2015-11-07
- Brooke.
-
@BandonRandon:ありがとう、あなたは正しいです.未使用のものはもう削除しました@BandonRandon: thanks, you are right. I've already deleted the unused one
- 0
- 2015-11-07
- Revious
投稿に高度なカスタムフィールドプラグインを使用しています.カスタムフィールドが保存されている場所を知りたいのですが.
wp_posts
テーブルを確認しました.ただし、カスタムフィールドのある投稿は見つかりませんでした.それらがデータベースに保存されているテーブルを知りたいのですが.